blob: 282747caafdfc28923b78f6bfc2331203ca8464f (
plain)
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
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
|
Archive member included to satisfy reference by file (symbol)
platform/libplatform_s.a(hw_init.o)
secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o (hw_init_reset_on_boot)
platform/libplatform_s.a(system_nrf91.o)
secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o (SystemInit)
platform/libplatform_s.a(exception_info.o)
secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o (store_and_dump_context)
platform/libplatform_s.a(uart_stdout.o)
platform/libplatform_s.a(exception_info.o) (stdio_init)
platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
platform/libplatform_s.a(exception_info.o) (tfm_hal_output_spm_log)
platform/libplatform_s.a(Driver_USART.o)
platform/libplatform_s.a(uart_stdout.o) (Driver_USART0)
platform/libplatform_s.a(nrfx_uarte.o)
platform/libplatform_s.a(Driver_USART.o) (nrfx_uarte_init)
platform/libplatform_s.a(nrfx_glue.o)
platform/libplatform_s.a(nrfx_uarte.o) (nrfx_critical_section_enter)
platform/libplatform_s.a(spu.o)
platform/libplatform_s.a(Driver_USART.o) (spu_peripheral_config_secure)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
platform/libplatform_s.a(nrfx_uarte.o) (memmove)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
platform/libplatform_s.a(exception_info.o) (memcpy)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o (memset)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o (psa_framework_version)
secure_fw/spm/libtfm_spm.a(utilities.o)
secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o (tfm_core_panic)
secure_fw/spm/libtfm_spm.a(spm_log.o)
platform/libplatform_s.a(exception_info.o) (spm_log_msgval)
secure_fw/spm/libtfm_spm.a(main.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o (main)
secure_fw/spm/libtfm_spm.a(psa_api.o)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o) (spm_handle_programmer_errors)
secure_fw/spm/libtfm_spm.a(psa_call_api.o)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o) (tfm_spm_client_psa_call)
secure_fw/spm/libtfm_spm.a(psa_version_api.o)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o) (tfm_spm_client_psa_framework_version)
secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o) (tfm_spm_partition_psa_read)
secure_fw/spm/libtfm_spm.a(backend_sfn.o)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o) (p_current_partition)
secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_core_handler_mode)
secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
secure_fw/spm/libtfm_spm.a(psa_api.o) (spm_free_connection)
secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_arch_set_secure_exception_priorities)
secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o (ns_agent_tz_main)
secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
secure_fw/spm/libtfm_spm.a(psa_call_api.o) (tfm_hal_memory_check)
secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
secure_fw/spm/libtfm_spm.a(backend_sfn.o) (tfm_hal_get_ns_entry_point)
secure_fw/spm/libtfm_spm.a(faults.o)
secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o (SPU_IRQHandler)
secure_fw/spm/libtfm_spm.a(target_cfg.o)
secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o) (enable_fault_handlers)
secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_core_validate_boot_data)
secure_fw/spm/libtfm_spm.a(tfm_arch.o)
secure_fw/spm/libtfm_spm.a(tfm_svcalls.o) (tfm_arch_free_msp_and_exc_ret)
secure_fw/spm/libtfm_spm.a(spm_ipc.o)
secure_fw/spm/libtfm_spm.a(psa_version_api.o) (tfm_spm_get_service_by_sid)
secure_fw/spm/libtfm_spm.a(rom_loader.o)
secure_fw/spm/libtfm_spm.a(spm_ipc.o) (load_a_partition_assuredly)
secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
secure_fw/spm/libtfm_spm.a(spm_ipc.o) (tfm_nspm_get_current_client_id)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o (tfm_crypto_init)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_init_alloc)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_cipher_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_hash_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_mac_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_aead_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_asymmetric_sign_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_key_derivation_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_key_management_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_random_interface)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_library_get_info)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o) (tfm_crypto_pake_interface)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o) (mbedtls_memory_buffer_alloc_init)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o) (mbedtls_platform_set_calloc_free)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o) (mbedtls_platform_zeroize)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o) (mbedcrypto__psa_generate_random)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o) (mbedcrypto__psa_reset_key_attributes)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o) (psa_is_valid_key_id)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o) (psa_driver_wrapper_init)
secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o (tfm_platform_service_sfn)
platform/libplatform_s.a(mpu_armv8m_drv.o)
secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o) (mpu_armv8m_enable)
platform/libplatform_s.a(nrf_exception_info.o)
secure_fw/spm/libtfm_spm.a(faults.o) (nrf_exception_info_store_context)
platform/libplatform_s.a(tfm_hal_platform.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_hal_platform_init)
platform/libplatform_s.a(dummy_otp.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_plat_otp_init)
platform/libplatform_s.a(tfm_hal_reset_halt.o)
secure_fw/spm/libtfm_spm.a(utilities.o) (tfm_hal_system_halt)
platform/libplatform_s.a(dummy_provisioning.o)
secure_fw/spm/libtfm_spm.a(main.o) (tfm_plat_provisioning_is_required)
platform/libplatform_s.a(ns_fault_service.o)
platform/libplatform_s.a(tfm_hal_reset_halt.o) (ns_fault_service_call_handler)
platform/libplatform_s.a(tfm_platform_system.o)
secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o) (tfm_platform_hal_system_reset)
platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
platform/libplatform_s.a(tfm_platform_system.o) (tfm_platform_hal_read_service)
secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o) (printf)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
platform/libplatform_s.a(tfm_hal_platform.o) (nrf_cc3xx_platform_init_hmac_drbg)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o) (nrf_cc3xx_platform_hmac_drbg_get)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj) (cc_mbedtls_platform_zeroize)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj) (cc_mbedtls_entropy_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj) (cc_mbedtls_hmac_drbg_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj) (CC_LibInitNoRng)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (CC_HalInit)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (CC_PalInit)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj) (CC_PalDmaInit)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj) (CC_PalWaitInterruptRND)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj) (CC_PalMemCopyPlat)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj) (CC_PalMutexCreate)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj) (CC_PalPowerSaveModeInit)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj) (mbedtls_mutex_unlock)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (CC_PalAbort)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (nrf_cc3xx_platform_ctr_drbg_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj) (platform_mutex_apis)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (LLF_RND_RunTrngStartupTest)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj) (mbedtls_hardware_poll)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj) (cc_mbedtls_sha256_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj) (mbedtls_sha_process_internal)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj) (cc_mbedtls_ctr_drbg_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj) (cc_mbedtls_sha256)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj) (RNG_PLAT_SetUserRngParameters)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj) (CC_PalTrngParamGet)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj) (LLF_RND_WaitRngInterrupt)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj) (SetDataBuffersInfo)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj) (InitHashDrv)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj) (cc_mbedtls_aes_init)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj) (CC_PalDataBufferAttrGet)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj) (ProcessAesDrv)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj) (kmu_validate_slot_and_size)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj) (write_invalid_chacha20_key)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj) (UtilCmacBuildDataForDerivation)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj) (kdr_pushed_slot)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o) (mbedtls_ct_memcmp)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o (exit)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o) (_global_impure_ptr)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o (__libc_init_array)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
/home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj) (memcmp)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o) (cmse_check_address_range)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse_nonsecure_call.o)
platform/libplatform_s.a(ns_fault_service.o) (__gnu_cmse_nonsecure_call)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
/home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o) (_exit)
Discarded input sections
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
.data 0x0000000000000000 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.rodata 0x0000000000000000 0x24 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
.ARM.extab 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.comment 0x0000000000000000 0x23 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.ARM.attributes
0x0000000000000000 0x34 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.text 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.data 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.bss 0x0000000000000000 0x0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._close 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._fstat 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._getpid 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._isatty 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._kill 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._lseek 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._read 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text._write 0x0000000000000000 0x2 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_info 0x0000000000000000 0xbc secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_abbrev 0x0000000000000000 0x5e secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_aranges
0x0000000000000000 0x58 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_ranges 0x0000000000000000 0x48 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_line 0x0000000000000000 0x111 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_str 0x0000000000000000 0x24e secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.comment 0x0000000000000000 0x23 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.debug_frame 0x0000000000000000 0x90 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.ARM.attributes
0x0000000000000000 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
.text 0x0000000000000000 0x0 platform/libplatform_s.a(hw_init.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(hw_init.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(hw_init.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(system_nrf91.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(system_nrf91.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(system_nrf91.o)
.text.SystemCoreClockUpdate
0x0000000000000000 0x10 platform/libplatform_s.a(system_nrf91.o)
.text.SystemStoreFICRNS
0x0000000000000000 0x38 platform/libplatform_s.a(system_nrf91.o)
.text.SystemLockFICRNS
0x0000000000000000 0x24 platform/libplatform_s.a(system_nrf91.o)
.data.SystemCoreClock
0x0000000000000000 0x4 platform/libplatform_s.a(system_nrf91.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(exception_info.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(exception_info.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(exception_info.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(uart_stdout.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(uart_stdout.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(uart_stdout.o)
.text._write 0x0000000000000000 0x8 platform/libplatform_s.a(uart_stdout.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(Driver_USART.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(Driver_USART.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(Driver_USART.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_uarte.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_uarte.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_init_check
0x0000000000000000 0x1c platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_tx_in_progress
0x0000000000000000 0x18 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_reconfigure
0x0000000000000000 0xa8 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_int_trigger
0x0000000000000000 0x64 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_errorsrc_get
0x0000000000000000 0x16 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_rx_new_data_check
0x0000000000000000 0x40 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_0_irq_handler
0x0000000000000000 0x3c0 platform/libplatform_s.a(nrfx_uarte.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_glue.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_glue.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(nrfx_glue.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(spu.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(spu.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(spu.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.text.psa_skip
0x0000000000000000 0x24 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(utilities.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(utilities.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(utilities.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_log.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_log.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_log.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(main.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(main.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(main.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_api.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_api.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_api.o)
.text.tfm_spm_get_lifecycle_state
0x0000000000000000 0x4 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_info 0x0000000000000000 0x6a1 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_abbrev 0x0000000000000000 0x27b secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_loc 0x0000000000000000 0x22a secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_aranges
0x0000000000000000 0x38 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_ranges 0x0000000000000000 0x28 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_line 0x0000000000000000 0x5f4 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_str 0x0000000000000000 0x587 secure_fw/spm/libtfm_spm.a(psa_api.o)
.comment 0x0000000000000000 0x23 secure_fw/spm/libtfm_spm.a(psa_api.o)
.debug_frame 0x0000000000000000 0x78 secure_fw/spm/libtfm_spm.a(psa_api.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/spm/libtfm_spm.a(psa_api.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_info 0x0000000000000000 0x8eb secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_abbrev 0x0000000000000000 0x217 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_loc 0x0000000000000000 0x620 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_aranges
0x0000000000000000 0x28 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_ranges 0x0000000000000000 0x18 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_line 0x0000000000000000 0x772 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_str 0x0000000000000000 0x670 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.comment 0x0000000000000000 0x23 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.debug_frame 0x0000000000000000 0x68 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/spm/libtfm_spm.a(psa_call_api.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_info 0x0000000000000000 0x4f4 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_abbrev 0x0000000000000000 0x190 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_loc 0x0000000000000000 0x73 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_aranges
0x0000000000000000 0x28 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_ranges 0x0000000000000000 0x18 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_line 0x0000000000000000 0x35b secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_str 0x0000000000000000 0x4d1 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.comment 0x0000000000000000 0x23 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.debug_frame 0x0000000000000000 0x3c secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.text.tfm_spm_partition_psa_skip
0x0000000000000000 0x3c secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.text.backend_wait_signals
0x0000000000000000 0x10 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.text.backend_assert_signal
0x0000000000000000 0xa secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.text.tfm_svc_thread_mode_spm_return
0x0000000000000000 0x2 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.bss.scheduler_lock
0x0000000000000000 0x4 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.text.tfm_hal_activate_boundary
0x0000000000000000 0x1c secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.text.tfm_hal_boundary_need_switch
0x0000000000000000 0x1a secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.rodata.partition_named_mmio_list
0x0000000000000000 0x8 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(faults.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(faults.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(faults.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.text 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.data 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.bss 0x0000000000000000 0x0 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.text.tfm_crypto_get_caller_id
0x0000000000000000 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.text.tfm_crypto_operation_alloc
0x0000000000000000 0x50 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.text.tfm_crypto_operation_release
0x0000000000000000 0x4c secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.text.tfm_crypto_operation_lookup
0x0000000000000000 0x48 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.text.tfm_crypto_library_key_id_init
0x0000000000000000 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.text.tfm_crypto_core_library_key_attributes_from_client
0x0000000000000000 0x52 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.text.tfm_crypto_core_library_key_attributes_to_client
0x0000000000000000 0x24 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.mbedtls_memory_buffer_set_verify
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.mbedtls_memory_buffer_alloc_verify
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.mbedtls_memory_buffer_alloc_free
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.mbedtls_calloc
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.mbedtls_platform_set_printf
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.mbedtls_platform_setup
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.mbedtls_platform_teardown
0x0000000000000000 0x2 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.data.mbedtls_printf
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_get_unaligned_uint16
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_put_unaligned_uint16
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_get_unaligned_uint32
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_put_unaligned_uint32
0x0000000000000000 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_get_unaligned_uint64
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_put_unaligned_uint64
0x0000000000000000 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text.mbedtls_xor
0x0000000000000000 0x4a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_mac_key_can_do
0x0000000000000000 0x40 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_key_policy_algorithm_intersection
0x0000000000000000 0x42c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_key_algorithm_permits
0x0000000000000000 0x1f8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_validate_ecc_key_attr
0x0000000000000000 0xb8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_aead_check_algorithm
0x0000000000000000 0xa4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_key_derivation_check_input_type
0x0000000000000000 0x72 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_sign_verify_check_alg
0x0000000000000000 0x80 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_aead_final_checks
0x0000000000000000 0x30 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_wipe_tag_output_buffer
0x0000000000000000 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_get_and_lock_key_slot_with_policy
0x0000000000000000 0xe8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_sign_internal
0x0000000000000000 0xc0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_verify_internal
0x0000000000000000 0x82 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_get_and_lock_transparent_key_slot_with_policy
0x0000000000000000 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_mac_finalize_alg_and_key_validation.isra.0
0x0000000000000000 0xe0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_mac_compute_internal
0x0000000000000000 0xae secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_start_key_creation.constprop.0
0x0000000000000000 0xa4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_can_do_hash
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_validate_unstructured_key_bit_size
0x0000000000000000 0x3e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_allocate_buffer_to_slot
0x0000000000000000 0x26 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_copy_key_material_into_slot
0x0000000000000000 0x20 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_import_key_into_slot
0x0000000000000000 0x42 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_destroy_key
0x0000000000000000 0x46 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_get_key_attributes
0x0000000000000000 0x46 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_export_key_internal
0x0000000000000000 0x66 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_export_key
0x0000000000000000 0x6a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_export_public_key_internal
0x0000000000000000 0x66 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_export_public_key
0x0000000000000000 0x7c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_import_key
0x0000000000000000 0x178 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_copy_key
0x0000000000000000 0x16c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_abort
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_setup
0x0000000000000000 0x3e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_update
0x0000000000000000 0x28 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_finish
0x0000000000000000 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_verify
0x0000000000000000 0x58 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_compute
0x0000000000000000 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_compare
0x0000000000000000 0x52 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_hash_clone
0x0000000000000000 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_abort
0x0000000000000000 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_mac_setup
0x0000000000000000 0xa8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_sign_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_verify_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_update
0x0000000000000000 0x28 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_sign_finish
0x0000000000000000 0x54 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_verify_finish
0x0000000000000000 0x40 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_compute
0x0000000000000000 0x2a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_mac_verify
0x0000000000000000 0x54 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_sign_message_builtin
0x0000000000000000 0x98 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_sign_message
0x0000000000000000 0x2c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_verify_message_builtin
0x0000000000000000 0x94 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_verify_message
0x0000000000000000 0x28 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_sign_hash
0x0000000000000000 0x2c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_verify_hash
0x0000000000000000 0x28 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_asymmetric_encrypt
0x0000000000000000 0xb8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_asymmetric_decrypt
0x0000000000000000 0xb4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_sign_hash_start
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_sign_hash_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_verify_hash_start
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_verify_hash_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_abort
0x0000000000000000 0x1c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_cipher_setup
0x0000000000000000 0x14c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_encrypt_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_decrypt_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_set_iv
0x0000000000000000 0x3c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_update
0x0000000000000000 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_finish
0x0000000000000000 0x38 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_decrypt
0x0000000000000000 0x150 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_encrypt
0x0000000000000000 0x3a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_decrypt
0x0000000000000000 0x3a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_abort
0x0000000000000000 0x1c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_aead_setup
0x0000000000000000 0x6a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_encrypt_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_decrypt_setup
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_set_nonce
0x0000000000000000 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_set_lengths
0x0000000000000000 0x38 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_update_ad
0x0000000000000000 0x48 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_update
0x0000000000000000 0x58 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_finish
0x0000000000000000 0x64 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_verify
0x0000000000000000 0x48 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_abort
0x0000000000000000 0x1a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_key_derivation_input_internal
0x0000000000000000 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_get_capacity
0x0000000000000000 0x12 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_set_capacity
0x0000000000000000 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_key_derivation_output_bytes_internal
0x0000000000000000 0x42 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_output_bytes
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_output_key
0x0000000000000000 0x20 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_verify_bytes
0x0000000000000000 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_verify_key
0x0000000000000000 0x6e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_setup
0x0000000000000000 0xf0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_input_bytes
0x0000000000000000 0x12 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_input_integer
0x0000000000000000 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_input_key
0x0000000000000000 0xa8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_key_derivation_key_agreement
0x0000000000000000 0xd0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_output
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_input
0x0000000000000000 0x20 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_abort
0x0000000000000000 0x1c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_setup
0x0000000000000000 0x190 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_set_role
0x0000000000000000 0x1e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_set_user
0x0000000000000000 0x1e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_set_peer
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_get_shared_key
0x0000000000000000 0xe8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_pake_set_context
0x0000000000000000 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_generate_iv
0x0000000000000000 0x74 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_cipher_encrypt
0x0000000000000000 0x160 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_aead_generate_nonce
0x0000000000000000 0xb6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_raw_key_agreement
0x0000000000000000 0x90 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedtls_psa_get_random
0x0000000000000000 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.psa_generate_key_internal
0x0000000000000000 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedcrypto__psa_generate_key
0x0000000000000000 0xee secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text.mbedtls_psa_crypto_configure_entropy_sources
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.rodata.CSWTCH.547
0x0000000000000000 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.rodata.CSWTCH.434
0x0000000000000000 0x12 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.rodata.mbedtls_psa_random_state
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.text.mbedcrypto__psa_reset_key_attributes
0x0000000000000000 0x8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_info 0x0000000000000000 0x2a3 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_abbrev 0x0000000000000000 0x135 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_loc 0x0000000000000000 0x25 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_aranges
0x0000000000000000 0x20 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_ranges 0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_line 0x0000000000000000 0x310 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_str 0x0000000000000000 0x3cf secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.comment 0x0000000000000000 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.debug_frame 0x0000000000000000 0x20 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_client.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_is_valid_key_id
0x0000000000000000 0x2c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_get_and_lock_key_slot_in_memory
0x0000000000000000 0x84 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_get_empty_key_slot
0x0000000000000000 0x80 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_get_and_lock_key_slot
0x0000000000000000 0x38 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_unlock_key_slot
0x0000000000000000 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_validate_key_location
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.psa_validate_key_persistence
0x0000000000000000 0xe secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.mbedcrypto__psa_open_key
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.mbedcrypto__psa_close_key
0x0000000000000000 0x42 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.mbedcrypto__psa_purge_key
0x0000000000000000 0x3a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text.mbedtls_psa_get_stats
0x0000000000000000 0x68 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_sign_message
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_verify_message
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_sign_hash
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_verify_hash
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_get_key_buffer_size_from_key_data
0x0000000000000000 0xa secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_get_key_buffer_size
0x0000000000000000 0xa secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_generate_key
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_import_key
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_export_key
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_export_public_key
0x0000000000000000 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_get_builtin_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_copy_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_derive_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_encrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_decrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_encrypt_setup
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_decrypt_setup
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_set_iv
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_update
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_finish
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_cipher_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_compute
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_setup
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_clone
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_update
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_finish
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_hash_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_encrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_decrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_encrypt_setup
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_decrypt_setup
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_set_nonce
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_set_lengths
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_update_ad
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_update
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_finish
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_verify
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_aead_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_compute
0x0000000000000000 0x2c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_sign_setup
0x0000000000000000 0x2c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_verify_setup
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_update
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_sign_finish
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_verify_finish
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_mac_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_setup
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_set_capacity
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_input_bytes
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_input_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_input_integer
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_output_bytes
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_derivation_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_key_agreement
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_setup
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_set_role
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_set_user
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_set_peer
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_set_context
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_output
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_input
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_get_shared_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_pake_abort
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_asymmetric_encrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_asymmetric_decrypt
0x0000000000000000 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_get_entropy
0x0000000000000000 0xa secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text.psa_driver_wrapper_destroy_builtin_key
0x0000000000000000 0x6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.text.platform_sp_system_reset
0x0000000000000000 0xa secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(mpu_armv8m_drv.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(mpu_armv8m_drv.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(mpu_armv8m_drv.o)
.text.mpu_armv8m_disable
0x0000000000000000 0x8 platform/libplatform_s.a(mpu_armv8m_drv.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(nrf_exception_info.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(nrf_exception_info.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(nrf_exception_info.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_platform.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_platform.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_platform.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_otp.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_otp.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_otp.o)
.text.tfm_plat_otp_read
0x0000000000000000 0x6 platform/libplatform_s.a(dummy_otp.o)
.text.tfm_plat_otp_write
0x0000000000000000 0x6 platform/libplatform_s.a(dummy_otp.o)
.text.tfm_plat_otp_get_size
0x0000000000000000 0x6 platform/libplatform_s.a(dummy_otp.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.text.tfm_hal_system_reset
0x0000000000000000 0x28 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_provisioning.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_provisioning.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(dummy_provisioning.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(ns_fault_service.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(ns_fault_service.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(ns_fault_service.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_system.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_system.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_system.o)
.text 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.data 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.bss 0x0000000000000000 0x0 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.text 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.text.printf 0x0000000000000000 0x8 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_info 0x0000000000000000 0x71 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_abbrev 0x0000000000000000 0x6e secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_aranges
0x0000000000000000 0x20 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_ranges 0x0000000000000000 0x10 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_line 0x0000000000000000 0xa1 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_str 0x0000000000000000 0x1ab secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.comment 0x0000000000000000 0x23 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.debug_frame 0x0000000000000000 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(dummy_tfm_sp_log_raw.o)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_init
0x0000000000000000 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_init_no_rng
0x0000000000000000 0x38 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_deinit
0x0000000000000000 0x1c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_is_initialized
0x0000000000000000 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_rng_is_initialized
0x0000000000000000 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_get_nonce_seed
0x0000000000000000 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text.nrf_cc3xx_platform_get_boot_seed
0x0000000000000000 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text.nrf_cc3xx_platform_hmac_drbg_free
0x0000000000000000 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text.nrf_cc3xx_platform_hmac_drbg_set_pr
0x0000000000000000 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text.nrf_cc3xx_platform_hmac_drbg_set_reseed_interval
0x0000000000000000 0x30 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text.nrf_cc3xx_platform_hmac_drbg_reseed
0x0000000000000000 0x38 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text.nrf_cc3xx_platform_hmac_drbg_get_with_add
0x0000000000000000 0x58 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.cc_mbedtls_entropy_free
0x0000000000000000 0x38 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.cc_mbedtls_entropy_add_source
0x0000000000000000 0x64 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.cc_mbedtls_entropy_update_manual
0x0000000000000000 0x4c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.cc_mbedtls_entropy_gather
0x0000000000000000 0x48 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_seed_buf
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_reseed
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_set_prediction_resistance
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_set_entropy_len
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_set_reseed_interval
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_random
0x0000000000000000 0x4c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_free
0x0000000000000000 0x40 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_LibInitNoRng
0x0000000000000000 0x64 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_LibInit
0x0000000000000000 0xc0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_RandomSeedsFilled
0x0000000000000000 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_LibFini
0x0000000000000000 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_LibInitRngModule
0x0000000000000000 0xb0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.data.tfm_random_seed_buff
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.data.eits_random_nonce_buff
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.data.invalid_chacha_256_bit_key
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.data.invalid_aes_256_bit_key
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.text.CC_HalClearInterruptBitRNG
0x0000000000000000 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.text.CC_PalSecMemCmp
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.text.CC_PalMemCmpPlat
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.text.CC_PalMemMovePlat
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.text.CC_PalMemSetPlat
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.text.CC_PalPowerSaveModeStatus
0x0000000000000000 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.text.mutex_free
0x0000000000000000 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.rodata.mbedtls_threading_set_alt.str1.4
0x0000000000000000 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.text.mbedtls_threading_set_alt
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.text.mbedtls_threading_free_alt
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.data.mbedtls_mutex_free
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.text.nrf_cc3xx_platform_set_abort
0x0000000000000000 0x10 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_init
0x0000000000000000 0x60 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_free
0x0000000000000000 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_set_pr
0x0000000000000000 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_set_reseed_interval
0x0000000000000000 0x30 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_reseed
0x0000000000000000 0x38 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_get_with_add
0x0000000000000000 0x58 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text.nrf_cc3xx_platform_ctr_drbg_get
0x0000000000000000 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.bss.nrf_cc3xx_platform_ctr_drbg_global_ctx
0x0000000000000000 0x1c0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_ctr_drbg.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text.nrf_cc3xx_platform_set_mutexes
0x0000000000000000 0x78 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.text.LLF_RND_StartTrngHW
0x0000000000000000 0x118 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.rodata.cc_mbedtls_sha256_clone.str1.4
0x0000000000000000 0x15 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.text.cc_mbedtls_sha256_clone
0x0000000000000000 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.text.cc_mbedtls_internal_sha256_process
0x0000000000000000 0x10 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.text.mbedtls_sha_process_internal
0x0000000000000000 0xe0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.block_cipher_df
0x0000000000000000 0x1cc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.ctr_drbg_update_internal
0x0000000000000000 0x148 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.mbedtls_ctr_drbg_reseed_internal
0x0000000000000000 0xc4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_init
0x0000000000000000 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_free
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_set_prediction_resistance
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_set_entropy_len
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_set_nonce_len
0x0000000000000000 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_set_reseed_interval
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_update
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_reseed
0x0000000000000000 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_seed
0x0000000000000000 0x9c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_random_with_add
0x0000000000000000 0x1e4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text.cc_mbedtls_ctr_drbg_random
0x0000000000000000 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.bss.buf.0 0x0000000000000000 0x1a0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.bss.seed.1 0x0000000000000000 0x180 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(ctr_drbg.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text.Mult32x32
0x0000000000000000 0x40 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text.Mult48x16
0x0000000000000000 0x1c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text.LLF_RND_EntropyEstimateFull
0x0000000000000000 0x52c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text.LLF_RND_GetCountRoscs
0x0000000000000000 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text.LLF_RND_RndCprngt
0x0000000000000000 0x58 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.rodata.cc_mbedtls_aes_init.str1.4
0x0000000000000000 0x13 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_init
0x0000000000000000 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_free
0x0000000000000000 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_setkey_enc
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_setkey_dec
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_ecb
0x0000000000000000 0x50 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_cbc
0x0000000000000000 0x78 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_cfb128
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_cfb8
0x0000000000000000 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_ctr
0x0000000000000000 0x68 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_aes_crypt_ofb
0x0000000000000000 0x68 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_internal_aes_encrypt
0x0000000000000000 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text.cc_mbedtls_internal_aes_decrypt
0x0000000000000000 0x48 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_alt.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text.LoadAesKey
0x0000000000000000 0xe8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text.InitAes.part.0
0x0000000000000000 0xe4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text.write_invalid_key
0x0000000000000000 0x30 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.rodata.ProcessAesDrv.str1.4
0x0000000000000000 0x6f /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text.ProcessAesDrv
0x0000000000000000 0x368 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text.FinishAesDrv
0x0000000000000000 0x254 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(aes_driver.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_write_key_slot
0x0000000000000000 0x114 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_verify_kdf_input
0x0000000000000000 0x24 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_convert_keybits_to_keysize
0x0000000000000000 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_validate_slot_and_size
0x0000000000000000 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_validate_slot_and_size_no_kdr
0x0000000000000000 0x80 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_validate_kdr_slot_and_size
0x0000000000000000 0x48 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_load_key_chacha20
0x0000000000000000 0x150 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_use_kdr_key
0x0000000000000000 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_load_key_aes
0x0000000000000000 0x94 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_derive_cmac
0x0000000000000000 0x170 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text.kmu_shadow_key_derive
0x0000000000000000 0x7c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(kmu_shared.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.text.write_invalid_chacha20_key
0x0000000000000000 0x40 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.text.cc_platform_prepare_chacha_key
0x0000000000000000 0x4c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.text.cc_platform_load_chacha_key
0x0000000000000000 0x68 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.text.cc_platform_cleanup_chacha_key
0x0000000000000000 0x3c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_platform_keys.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.text.UtilCmacBuildDataForDerivation
0x0000000000000000 0xc0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.text.UtilCmacDeriveKey
0x0000000000000000 0xe8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_util_cmac.c.obj)
.text 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.data 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.bss 0x0000000000000000 0x0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text.nrf_cc3xx_platform_kmu_write_key
0x0000000000000000 0xd8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text.nrf_cc3xx_platform_kmu_write_key_slot
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text.nrf_cc3xx_platform_kmu_write_kdr_slot
0x0000000000000000 0x10 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text.nrf_cc3xx_platform_kmu_push_kdr_slot_and_lock
0x0000000000000000 0x16c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text.nrf_cc3xx_platform_kmu_shadow_key_derive
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.data.kdr_pushed_slot
0x0000000000000000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.comment 0x0000000000000000 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.ARM.attributes
0x0000000000000000 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_kmu.c.obj)
.text 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.data 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.bss 0x0000000000000000 0x0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.text.mbedtls_ct_memcmp
0x0000000000000000 0x1a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.text.mbedtls_ct_memcpy_if
0x0000000000000000 0x70 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.text.mbedtls_ct_memcpy_offset
0x0000000000000000 0x50 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.bss.mbedtls_ct_zero
0x0000000000000000 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_info 0x0000000000000000 0x62a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_abbrev 0x0000000000000000 0x2ae secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_loc 0x0000000000000000 0x49a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_aranges
0x0000000000000000 0x30 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_ranges 0x0000000000000000 0xd8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_line 0x0000000000000000 0x557 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_str 0x0000000000000000 0x397 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.comment 0x0000000000000000 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.debug_frame 0x0000000000000000 0x80 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.ARM.attributes
0x0000000000000000 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a(constant_time.o)
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
.data._impure_ptr
0x0000000000000000 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.text.memcmp 0x0000000000000000 0x20 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.debug_frame 0x0000000000000000 0x28 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.ARM.attributes
0x0000000000000000 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-memcmp.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse_nonsecure_call.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse_nonsecure_call.o)
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.rodata 0x0000000000000000 0x24 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
.text 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
.data 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
.bss 0x0000000000000000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
Memory Configuration
Name Origin Length Attributes
FLASH 0x0000000000010200 0x0000000000007e00 xr
RAM 0x0000000020000000 0x0000000000008000 xrw
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
LOAD secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/syscalls_stub.o
LOAD platform/libplatform_s.a
LOAD secure_fw/partitions/lib/runtime/libtfm_sprt.a
LOAD secure_fw/spm/libtfm_spm.a
LOAD secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a
LOAD platform/libplatform_crypto_keys.a
LOAD secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a
LOAD secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a
LOAD platform/libplatform_s.a
LOAD secure_fw/partitions/lib/runtime/libtfm_sprt.a
LOAD secure_fw/spm/libtfm_spm.a
LOAD secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a
LOAD platform/libplatform_crypto_keys.a
LOAD secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a
LOAD secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a
LOAD platform/libplatform_s.a
LOAD secure_fw/partitions/lib/runtime/libtfm_sprt.a
LOAD secure_fw/spm/libtfm_spm.a
LOAD secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a
LOAD platform/libplatform_crypto_keys.a
LOAD secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a
LOAD secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a
LOAD /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a
LOAD /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_oberon/lib/cortex-m33/soft-float/liboberon_mbedtls_3.0.15.a
LOAD secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libmbedcrypto_base.a
LOAD /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_oberon/lib/cortex-m33/soft-float/liboberon_3.0.15.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a
START GROUP
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a
END GROUP
START GROUP
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a
END GROUP
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
0x0000000000000800 __msp_stack_size__ = 0x800
START GROUP
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libm.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a
LOAD /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a
END GROUP
.TFM_VECTORS 0x0000000000010200 0x144
0x0000000000010200 __vectors_start__ = .
*(.vectors)
.vectors 0x0000000000010200 0x144 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
0x0000000000010200 __Vectors
0x0000000000010344 . = ALIGN (0x4)
0x0000000000010344 __vectors_end__ = .
0x0000000000000001 ASSERT ((. <= (ADDR (.TFM_VECTORS) + 0x144)), .TFM_VECTORS section size overflow.)
0x0000000000010344 . = (ADDR (.TFM_VECTORS) + 0x144)
.TFM_SP_LOAD_LIST
0x0000000000010344 0xbc
*(.part_load_priority_00)
.part_load_priority_00
0x0000000000010344 0x30 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
0x0000000000010344 tfm_sp_ns_agent_tz_load
*(.part_load_priority_01)
*(.part_load_priority_02)
.part_load_priority_02
0x0000000000010374 0x48 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
0x0000000000010374 tfm_sp_crypto_load
.part_load_priority_02
0x00000000000103bc 0x44 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
0x00000000000103bc tfm_sp_platform_load
*(.part_load_priority_03)
0x0000000000010344 Image$$TFM_SP_LOAD_LIST$$RO$$Base = ADDR (.TFM_SP_LOAD_LIST)
0x0000000000010400 Image$$TFM_SP_LOAD_LIST$$RO$$Limit = (ADDR (.TFM_SP_LOAD_LIST) + SIZEOF (.TFM_SP_LOAD_LIST))
0x0000000000010400 . = ALIGN (0x20)
0x0000000000010400 Image$$TFM_PSA_CODE_START$$Base = .
.TFM_PSA_ROT_LINKER
0x0000000000010400 0x420
*tfm_psa_rot_partition*:(SORT_BY_ALIGNMENT(.text*))
.text.tfm_crypto_clear_scratch
0x0000000000010400 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.text.tfm_crypto_api_dispatcher
0x0000000000010420 0xb0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
0x0000000000010420 tfm_crypto_api_dispatcher
.text.tfm_crypto_sfn
0x00000000000104d0 0x170 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
0x00000000000104d0 tfm_crypto_sfn
.text.tfm_crypto_init_alloc
0x0000000000010640 0x14 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
0x0000000000010640 tfm_crypto_init_alloc
.text.tfm_crypto_library_get_info
0x0000000000010654 0x1c secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
0x0000000000010654 tfm_crypto_library_get_info
.text.tfm_crypto_core_library_init
0x0000000000010670 0x14 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
0x0000000000010670 tfm_crypto_core_library_init
.text.tfm_crypto_init
0x0000000000010684 0x1c secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
0x0000000000010684 tfm_crypto_init
.text.tfm_crypto_cipher_interface
0x00000000000106a0 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
0x00000000000106a0 tfm_crypto_cipher_interface
.text.tfm_crypto_hash_interface
0x00000000000106a6 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
0x00000000000106a6 tfm_crypto_hash_interface
.text.tfm_crypto_mac_interface
0x00000000000106ac 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
0x00000000000106ac tfm_crypto_mac_interface
.text.tfm_crypto_aead_interface
0x00000000000106b2 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
0x00000000000106b2 tfm_crypto_aead_interface
.text.tfm_crypto_asymmetric_sign_interface
0x00000000000106b8 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
0x00000000000106b8 tfm_crypto_asymmetric_sign_interface
.text.tfm_crypto_asymmetric_encrypt_interface
0x00000000000106be 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
0x00000000000106be tfm_crypto_asymmetric_encrypt_interface
.text.tfm_crypto_key_derivation_interface
0x00000000000106c4 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
0x00000000000106c4 tfm_crypto_key_derivation_interface
.text.tfm_crypto_key_management_interface
0x00000000000106ca 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
0x00000000000106ca tfm_crypto_key_management_interface
.text.tfm_crypto_random_interface
0x00000000000106d0 0x8 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
0x00000000000106d0 tfm_crypto_random_interface
.text.tfm_crypto_pake_interface
0x00000000000106d8 0x6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
0x00000000000106d8 tfm_crypto_pake_interface
.text.tfm_platform_service_sfn
0x00000000000106de 0x114 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
0x00000000000106de tfm_platform_service_sfn
.text.platform_sp_init
0x00000000000107f2 0x4 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
0x00000000000107f2 platform_sp_init
*tfm_psa_rot_partition*:(SORT_BY_ALIGNMENT(.rodata*))
.rodata.tfm_crypto_library_get_info.str1.1
0x00000000000107f6 0xf secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
*(TFM_*_PSA-ROT_ATTR_FN)
0x0000000000010820 . = ALIGN (0x20)
*fill* 0x0000000000010805 0x1b
0x0000000000010400 Image$$TFM_PSA_ROT_LINKER$$RO$$Base = ADDR (.TFM_PSA_ROT_LINKER)
0x0000000000010820 Image$$TFM_PSA_ROT_LINKER$$RO$$Limit = (ADDR (.TFM_PSA_ROT_LINKER) + SIZEOF (.TFM_PSA_ROT_LINKER))
0x0000000000010400 Image$$TFM_PSA_ROT_LINKER$$Base = ADDR (.TFM_PSA_ROT_LINKER)
0x0000000000010820 Image$$TFM_PSA_ROT_LINKER$$Limit = (ADDR (.TFM_PSA_ROT_LINKER) + SIZEOF (.TFM_PSA_ROT_LINKER))
0x0000000000010820 Image$$TFM_PSA_CODE_END$$Base = .
0x0000000000010820 Image$$TFM_APP_CODE_START$$Base = .
.TFM_APP_ROT_LINKER
0x0000000000010820 0x0
*tfm_app_rot_partition*:(SORT_BY_ALIGNMENT(.text*))
*tfm_app_rot_partition*:(SORT_BY_ALIGNMENT(.rodata*))
*(TFM_*_APP-ROT_ATTR_FN)
0x0000000000010820 . = ALIGN (0x20)
0x0000000000010820 Image$$TFM_APP_ROT_LINKER$$RO$$Base = ADDR (.TFM_APP_ROT_LINKER)
0x0000000000010820 Image$$TFM_APP_ROT_LINKER$$RO$$Limit = (ADDR (.TFM_APP_ROT_LINKER) + SIZEOF (.TFM_APP_ROT_LINKER))
0x0000000000010820 Image$$TFM_APP_ROT_LINKER$$Base = ADDR (.TFM_APP_ROT_LINKER)
0x0000000000010820 Image$$TFM_APP_ROT_LINKER$$Limit = (ADDR (.TFM_APP_ROT_LINKER) + SIZEOF (.TFM_APP_ROT_LINKER))
0x0000000000010820 Image$$TFM_APP_CODE_END$$Base = .
.ARM.extab
*(.ARM.extab* .gnu.linkonce.armextab.*)
0x0000000000010820 __exidx_start = .
.ARM.exidx 0x0000000000010820 0x8
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
.ARM.exidx 0x0000000000010820 0x8 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
0x10 (size before relaxing)
0x0000000000010828 __exidx_end = .
.ER_TFM_CODE 0x0000000000010828 0x2fa4
0x0000000000010828 . = ALIGN (0x4)
0x0000000000010828 __copy_table_start__ = .
0x0000000000010828 0x4 LONG 0x17c40 LOADADDR (.TFM_DATA)
0x000000000001082c 0x4 LONG 0x20001080 ADDR (.TFM_DATA)
0x0000000000010830 0x4 LONG 0x4a (SIZEOF (.TFM_DATA) / 0x4)
0x0000000000010834 0x4 LONG 0x17c40 LOADADDR (.TFM_PSA_ROT_LINKER_DATA)
0x0000000000010838 0x4 LONG 0x20000c20 ADDR (.TFM_PSA_ROT_LINKER_DATA)
0x000000000001083c 0x4 LONG 0x0 (SIZEOF (.TFM_PSA_ROT_LINKER_DATA) / 0x4)
0x0000000000010840 0x4 LONG 0x17c40 LOADADDR (.TFM_APP_ROT_LINKER_DATA)
0x0000000000010844 0x4 LONG 0x20000c00 ADDR (.TFM_APP_ROT_LINKER_DATA)
0x0000000000010848 0x4 LONG 0x0 (SIZEOF (.TFM_APP_ROT_LINKER_DATA) / 0x4)
0x000000000001084c __copy_table_end__ = .
0x000000000001084c . = ALIGN (0x4)
0x000000000001084c __zero_table_start__ = .
0x000000000001084c 0x4 LONG 0x200011a8 ADDR (.TFM_BSS)
0x0000000000010850 0x4 LONG 0x5c4 (SIZEOF (.TFM_BSS) / 0x4)
0x0000000000010854 0x4 LONG 0x20000c20 ADDR (.TFM_PSA_ROT_LINKER_BSS)
0x0000000000010858 0x4 LONG 0x118 (SIZEOF (.TFM_PSA_ROT_LINKER_BSS) / 0x4)
0x000000000001085c 0x4 LONG 0x20000c00 ADDR (.TFM_APP_ROT_LINKER_BSS)
0x0000000000010860 0x4 LONG 0x8 (SIZEOF (.TFM_APP_ROT_LINKER_BSS) / 0x4)
0x0000000000010864 __zero_table_end__ = .
*startup*(.text*)
.text.default_irq_handler
0x0000000000010864 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
0x0000000000010864 default_irq_handler
.text.Reset_Handler
0x0000000000010868 0xd4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
0x0000000000010868 Reset_Handler
.text.default_tfm_IRQHandler
0x000000000001093c 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
0x000000000001093c TIMER2_IRQHandler
0x000000000001093c DebugMon_Handler
0x000000000001093c RTC0_IRQHandler
0x000000000001093c SysTick_Handler
0x000000000001093c PWM1_IRQHandler
0x000000000001093c PendSV_Handler
0x000000000001093c NMI_Handler
0x000000000001093c PDM_IRQHandler
0x000000000001093c default_tfm_IRQHandler
0x000000000001093c IPC_IRQHandler
0x000000000001093c PWM3_IRQHandler
0x000000000001093c FPU_IRQHandler
0x000000000001093c EGU3_IRQHandler
0x000000000001093c KMU_IRQHandler
0x000000000001093c CRYPTOCELL_IRQHandler
0x000000000001093c I2S_IRQHandler
0x000000000001093c EGU2_IRQHandler
0x000000000001093c TIMER0_IRQHandler
0x000000000001093c EGU4_IRQHandler
0x000000000001093c EGU0_IRQHandler
0x000000000001093c GPIOTE1_IRQHandler
0x000000000001093c TIMER1_IRQHandler
0x000000000001093c PWM2_IRQHandler
0x000000000001093c EGU1_IRQHandler
0x000000000001093c EGU5_IRQHandler
0x000000000001093c UARTE3_SPIM3_SPIS3_TWIM3_TWIS3_IRQHandler
0x000000000001093c SAADC_IRQHandler
0x000000000001093c GPIOTE0_IRQHandler
0x000000000001093c WDT_IRQHandler
0x000000000001093c SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
0x000000000001093c SPIM2_SPIS2_TWIM2_TWIS2_UARTE2_IRQHandler
0x000000000001093c PWM0_IRQHandler
0x000000000001093c RTC1_IRQHandler
0x000000000001093c SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
0x000000000001093c CLOCK_POWER_IRQHandler
*libplatform_s*:(SORT_BY_ALIGNMENT(.text*))
.text.hw_init_reset_on_boot
0x0000000000010958 0xd0 platform/libplatform_s.a(hw_init.o)
0x0000000000010958 hw_init_reset_on_boot
.text.uicr_HFXOCNT_erased
0x0000000000010a28 0x40 platform/libplatform_s.a(system_nrf91.o)
.text.uicr_HFXOSRC_erased
0x0000000000010a68 0x3c platform/libplatform_s.a(system_nrf91.o)
.text.SystemInit
0x0000000000010aa4 0x1c8 platform/libplatform_s.a(system_nrf91.o)
0x0000000000010aa4 SystemInit
.text.tfm_exception_info_get_context
0x0000000000010c6c 0xc platform/libplatform_s.a(exception_info.o)
0x0000000000010c6c tfm_exception_info_get_context
.text.store_and_dump_context
0x0000000000010c78 0x114 platform/libplatform_s.a(exception_info.o)
0x0000000000010c78 store_and_dump_context
.text.stdio_output_string
0x0000000000010d8c 0x40 platform/libplatform_s.a(uart_stdout.o)
0x0000000000010d8c stdio_output_string
.text.stdio_init
0x0000000000010dcc 0x2c platform/libplatform_s.a(uart_stdout.o)
0x0000000000010dcc stdio_init
.text.stdio_uninit
0x0000000000010df8 0x18 platform/libplatform_s.a(uart_stdout.o)
0x0000000000010df8 stdio_uninit
.text.ARM_USART_GetVersion
0x0000000000010e10 0x20 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_GetTxCount
0x0000000000010e30 0xc platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_GetRxCount
0x0000000000010e3c 0xc platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_Receive
0x0000000000010e48 0x3c platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USARTx_Send.constprop.0
0x0000000000010e84 0x78 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_Control
0x0000000000010efc 0x178 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_Uninitialize
0x0000000000011074 0x4c platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_Initialize
0x00000000000110c0 0xa4 platform/libplatform_s.a(Driver_USART.o)
.text.on_rx_disabled
0x0000000000011164 0x64 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrf_gpio_cfg_input.constprop.0
0x00000000000111c8 0x30 platform/libplatform_s.a(nrfx_uarte.o)
.text.blocking_tx
0x00000000000111f8 0x1b8 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrf_gpio_pin_set
0x00000000000113b0 0x18 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrf_gpio_cfg_output
0x00000000000113c8 0x34 platform/libplatform_s.a(nrfx_uarte.o)
.text.uarte_configure
0x00000000000113fc 0x178 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrf_gpio_cfg_default
0x0000000000011574 0x34 platform/libplatform_s.a(nrfx_uarte.o)
.text.nrfx_uarte_init
0x00000000000115a8 0x16c platform/libplatform_s.a(nrfx_uarte.o)
0x00000000000115a8 nrfx_uarte_init
.text.nrfx_uarte_tx
0x0000000000011714 0xd8 platform/libplatform_s.a(nrfx_uarte.o)
0x0000000000011714 nrfx_uarte_tx
.text.nrfx_uarte_tx_abort
0x00000000000117ec 0xb8 platform/libplatform_s.a(nrfx_uarte.o)
0x00000000000117ec nrfx_uarte_tx_abort
.text.nrfx_uarte_rx_enable
0x00000000000118a4 0x144 platform/libplatform_s.a(nrfx_uarte.o)
0x00000000000118a4 nrfx_uarte_rx_enable
.text.nrfx_uarte_rx_buffer_set
0x00000000000119e8 0x138 platform/libplatform_s.a(nrfx_uarte.o)
0x00000000000119e8 nrfx_uarte_rx_buffer_set
.text.nrfx_uarte_rx_abort
0x0000000000011b20 0x108 platform/libplatform_s.a(nrfx_uarte.o)
0x0000000000011b20 nrfx_uarte_rx_abort
.text.nrfx_uarte_uninit
0x0000000000011c28 0xd0 platform/libplatform_s.a(nrfx_uarte.o)
0x0000000000011c28 nrfx_uarte_uninit
.text.nrfx_uarte_rx_ready
0x0000000000011cf8 0x44 platform/libplatform_s.a(nrfx_uarte.o)
0x0000000000011cf8 nrfx_uarte_rx_ready
.text.nrfx_uarte_rx
0x0000000000011d3c 0x74 platform/libplatform_s.a(nrfx_uarte.o)
0x0000000000011d3c nrfx_uarte_rx
.text.nrfx_critical_section_enter
0x0000000000011db0 0x10 platform/libplatform_s.a(nrfx_glue.o)
0x0000000000011db0 nrfx_critical_section_enter
.text.nrfx_critical_section_exit
0x0000000000011dc0 0x14 platform/libplatform_s.a(nrfx_glue.o)
0x0000000000011dc0 nrfx_critical_section_exit
.text.spu_enable_interrupts
0x0000000000011dd4 0x10 platform/libplatform_s.a(spu.o)
0x0000000000011dd4 spu_enable_interrupts
.text.spu_events_get
0x0000000000011de4 0x28 platform/libplatform_s.a(spu.o)
0x0000000000011de4 spu_events_get
.text.spu_clear_events
0x0000000000011e0c 0x24 platform/libplatform_s.a(spu.o)
0x0000000000011e0c spu_clear_events
.text.spu_regions_reset_unlocked_secure
0x0000000000011e30 0x3c platform/libplatform_s.a(spu.o)
0x0000000000011e30 spu_regions_reset_unlocked_secure
.text.spu_regions_flash_config
0x0000000000011e6c 0x2c platform/libplatform_s.a(spu.o)
0x0000000000011e6c spu_regions_flash_config
.text.spu_regions_sram_config
0x0000000000011e98 0x34 platform/libplatform_s.a(spu.o)
0x0000000000011e98 spu_regions_sram_config
.text.spu_regions_flash_config_non_secure_callable
0x0000000000011ecc 0x30 platform/libplatform_s.a(spu.o)
0x0000000000011ecc spu_regions_flash_config_non_secure_callable
.text.spu_regions_sram_get_last_address_in_region
0x0000000000011efc 0xc platform/libplatform_s.a(spu.o)
0x0000000000011efc spu_regions_sram_get_last_address_in_region
.text.spu_peripheral_config_secure
0x0000000000011f08 0x1c platform/libplatform_s.a(spu.o)
0x0000000000011f08 spu_peripheral_config_secure
.text.spu_peripheral_config_non_secure
0x0000000000011f24 0x18 platform/libplatform_s.a(spu.o)
0x0000000000011f24 spu_peripheral_config_non_secure
.text.mpu_armv8m_enable
0x0000000000011f3c 0x34 platform/libplatform_s.a(mpu_armv8m_drv.o)
0x0000000000011f3c mpu_armv8m_enable
.text.nrf_exception_info_store_context
0x0000000000011f70 0x20 platform/libplatform_s.a(nrf_exception_info.o)
0x0000000000011f70 nrf_exception_info_store_context
.text.nrf_exception_info_get_context
0x0000000000011f90 0xc platform/libplatform_s.a(nrf_exception_info.o)
0x0000000000011f90 nrf_exception_info_get_context
.text.tfm_hal_platform_init
0x0000000000011f9c 0x44 platform/libplatform_s.a(tfm_hal_platform.o)
0x0000000000011f9c tfm_hal_platform_init
.text.ns_fault_service_set_handler
0x0000000000011fe0 0x14 platform/libplatform_s.a(ns_fault_service.o)
0x0000000000011fe0 ns_fault_service_set_handler
.text.call_ns_callback
0x0000000000011ff4 0xa8 platform/libplatform_s.a(ns_fault_service.o)
0x0000000000011ff4 call_ns_callback
.text.ns_fault_service_call_handler
0x000000000001209c 0x34 platform/libplatform_s.a(ns_fault_service.o)
0x000000000001209c ns_fault_service_call_handler
.text.tfm_platform_hal_system_reset
0x00000000000120d0 0x24 platform/libplatform_s.a(tfm_platform_system.o)
0x00000000000120d0 tfm_platform_hal_system_reset
.text.tfm_platform_hal_read_service
0x00000000000120f4 0x60 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
0x00000000000120f4 tfm_platform_hal_read_service
.text.nrf91_errata_6
0x0000000000012154 0x1e platform/libplatform_s.a(system_nrf91.o)
.text.nrf91_errata_14
0x0000000000012172 0x24 platform/libplatform_s.a(system_nrf91.o)
.text.tfm_hal_output_spm_log
0x0000000000012196 0x4 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
0x0000000000012196 tfm_hal_output_spm_log
.text.ARM_USART_GetCapabilities
0x000000000001219a 0x4 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART_Transfer
0x000000000001219e 0x6 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART_GetStatus
0x00000000000121a4 0xc platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART_SetModemControl
0x00000000000121b0 0x6 platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART_GetModemStatus
0x00000000000121b6 0xc platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_PowerControl
0x00000000000121c2 0xc platform/libplatform_s.a(Driver_USART.o)
.text.ARM_USART0_Send
0x00000000000121ce 0x4 platform/libplatform_s.a(Driver_USART.o)
.text.uart_config_set_uart_pins
0x00000000000121d2 0x3c platform/libplatform_s.a(Driver_USART.o)
0x00000000000121d2 uart_config_set_uart_pins
.text.is_tx_ready
0x000000000001220e 0x1a platform/libplatform_s.a(nrfx_uarte.o)
.text.user_handler
0x0000000000012228 0x22 platform/libplatform_s.a(nrfx_uarte.o)
.text.user_handler_on_rx_done
0x000000000001224a 0x28 platform/libplatform_s.a(nrfx_uarte.o)
.text.disable_hw_from_rx
0x0000000000012272 0x24 platform/libplatform_s.a(nrfx_uarte.o)
.text.rx_flush.part.0
0x0000000000012296 0x66 platform/libplatform_s.a(nrfx_uarte.o)
.text.disable_hw_from_tx
0x00000000000122fc 0x16 platform/libplatform_s.a(nrfx_uarte.o)
.text.tx_prepare_start.isra.0
0x0000000000012312 0x7e platform/libplatform_s.a(nrfx_uarte.o)
.text.spu_regions_flash_get_base_address_in_region
0x0000000000012390 0x4 platform/libplatform_s.a(spu.o)
0x0000000000012390 spu_regions_flash_get_base_address_in_region
.text.spu_regions_flash_get_last_address_in_region
0x0000000000012394 0xa platform/libplatform_s.a(spu.o)
0x0000000000012394 spu_regions_flash_get_last_address_in_region
.text.spu_regions_flash_get_start_id
0x000000000001239e 0x4 platform/libplatform_s.a(spu.o)
0x000000000001239e spu_regions_flash_get_start_id
.text.spu_regions_flash_get_last_id
0x00000000000123a2 0x4 platform/libplatform_s.a(spu.o)
0x00000000000123a2 spu_regions_flash_get_last_id
.text.spu_regions_flash_get_region_size
0x00000000000123a6 0x6 platform/libplatform_s.a(spu.o)
0x00000000000123a6 spu_regions_flash_get_region_size
.text.spu_regions_sram_get_base_address_in_region
0x00000000000123ac 0xa platform/libplatform_s.a(spu.o)
0x00000000000123ac spu_regions_sram_get_base_address_in_region
.text.spu_regions_sram_get_start_id
0x00000000000123b6 0x4 platform/libplatform_s.a(spu.o)
0x00000000000123b6 spu_regions_sram_get_start_id
.text.spu_regions_sram_get_last_id
0x00000000000123ba 0x4 platform/libplatform_s.a(spu.o)
0x00000000000123ba spu_regions_sram_get_last_id
.text.spu_regions_sram_get_region_size
0x00000000000123be 0x6 platform/libplatform_s.a(spu.o)
0x00000000000123be spu_regions_sram_get_region_size
.text.mpu_armv8m_region_enable
0x00000000000123c4 0x6a platform/libplatform_s.a(mpu_armv8m_drv.o)
0x00000000000123c4 mpu_armv8m_region_enable
.text.mpu_armv8m_region_disable
0x000000000001242e 0x14 platform/libplatform_s.a(mpu_armv8m_drv.o)
0x000000000001242e mpu_armv8m_region_disable
.text.mpu_armv8m_clean
0x0000000000012442 0x22 platform/libplatform_s.a(mpu_armv8m_drv.o)
0x0000000000012442 mpu_armv8m_clean
.text.tfm_plat_otp_init
0x0000000000012464 0x4 platform/libplatform_s.a(dummy_otp.o)
0x0000000000012464 tfm_plat_otp_init
.text.tfm_hal_system_halt
0x0000000000012468 0xc platform/libplatform_s.a(tfm_hal_reset_halt.o)
0x0000000000012468 tfm_hal_system_halt
.text.tfm_plat_provisioning_is_required
0x0000000000012474 0x4 platform/libplatform_s.a(dummy_provisioning.o)
0x0000000000012474 tfm_plat_provisioning_is_required
.text.tfm_plat_provisioning_perform
0x0000000000012478 0x4 platform/libplatform_s.a(dummy_provisioning.o)
0x0000000000012478 tfm_plat_provisioning_perform
.text.tfm_plat_provisioning_check_for_dummy_keys
0x000000000001247c 0x2 platform/libplatform_s.a(dummy_provisioning.o)
0x000000000001247c tfm_plat_provisioning_check_for_dummy_keys
.text.tfm_platform_hal_ioctl
0x000000000001247e 0x6e platform/libplatform_s.a(tfm_platform_system.o)
0x000000000001247e tfm_platform_hal_ioctl
*libtfm_spm*:(SORT_BY_ALIGNMENT(.text*))
.text.spm_log_msgval
0x00000000000124ec 0x58 secure_fw/spm/libtfm_spm.a(spm_log.o)
0x00000000000124ec spm_log_msgval
.text.startup.main
0x0000000000012544 0x68 secure_fw/spm/libtfm_spm.a(main.o)
0x0000000000012544 main
.text.spm_associate_call_params
0x00000000000125ac 0x16c secure_fw/spm/libtfm_spm.a(psa_call_api.o)
0x00000000000125ac spm_associate_call_params
.text.tfm_spm_partition_psa_read
0x0000000000012718 0x74 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
0x0000000000012718 tfm_spm_partition_psa_read
.text.tfm_spm_partition_psa_write
0x000000000001278c 0x74 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
0x000000000001278c tfm_spm_partition_psa_write
.text.spm_thread_fn
0x0000000000012800 0x4c secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.text.backend_messaging
0x000000000001284c 0x50 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x000000000001284c backend_messaging
.text.backend_replying
0x000000000001289c 0x10 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x000000000001289c backend_replying
.text.backend_init_comp_assuredly
0x00000000000128ac 0x5c secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x00000000000128ac backend_init_comp_assuredly
.text.spm_svc_handler
0x0000000000012908 0x8c secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
0x0000000000012908 spm_svc_handler
.text.SVC_Handler
0x0000000000012994 0x68 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
0x0000000000012994 SVC_Handler
.text.tfm_arch_set_secure_exception_priorities
0x00000000000129fc 0x28 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
0x00000000000129fc tfm_arch_set_secure_exception_priorities
.text.ns_agent_tz_main
0x0000000000012a24 0x30 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
0x0000000000012a24 ns_agent_tz_main
.text.tfm_hal_bind_boundary
0x0000000000012a54 0x78 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0x0000000000012a54 tfm_hal_bind_boundary
.text.mpu_init_cfg
0x0000000000012acc 0xf0 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0x0000000000012acc mpu_init_cfg
.text.tfm_hal_get_ns_VTOR
0x0000000000012bbc 0xc secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
0x0000000000012bbc tfm_hal_get_ns_VTOR
.text.tfm_hal_get_ns_MSP
0x0000000000012bc8 0xc secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
0x0000000000012bc8 tfm_hal_get_ns_MSP
.text.tfm_hal_get_ns_entry_point
0x0000000000012bd4 0xc secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
0x0000000000012bd4 tfm_hal_get_ns_entry_point
.text.SPU_Handler
0x0000000000012be0 0x3c secure_fw/spm/libtfm_spm.a(faults.o)
0x0000000000012be0 SPU_Handler
.text.enable_fault_handlers
0x0000000000012c1c 0x14 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012c1c enable_fault_handlers
.text.system_reset_cfg
0x0000000000012c30 0x18 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012c30 system_reset_cfg
.text.nvic_interrupt_target_state_cfg
0x0000000000012c48 0x40 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012c48 nvic_interrupt_target_state_cfg
.text.nvic_interrupt_enable
0x0000000000012c88 0x18 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012c88 nvic_interrupt_enable
.text.sau_and_idau_cfg
0x0000000000012ca0 0x20 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012ca0 sau_and_idau_cfg
.text.spu_init_cfg
0x0000000000012cc0 0x80 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012cc0 spu_init_cfg
.text.spu_periph_init_cfg
0x0000000000012d40 0x4c secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000012d40 spu_periph_init_cfg
.text.tfm_core_validate_boot_data
0x0000000000012d8c 0xc secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
0x0000000000012d8c tfm_core_validate_boot_data
.text.tfm_core_get_boot_data_handler
0x0000000000012d98 0x34 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
0x0000000000012d98 tfm_core_get_boot_data_handler
.text.tfm_arch_init_context
0x0000000000012dcc 0x5c secure_fw/spm/libtfm_spm.a(tfm_arch.o)
0x0000000000012dcc tfm_arch_init_context
.text.tfm_spm_get_service_by_sid
0x0000000000012e28 0x2c secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012e28 tfm_spm_get_service_by_sid
.text.tfm_spm_check_authorization
0x0000000000012e54 0x44 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012e54 tfm_spm_check_authorization
.text.spm_init_connection
0x0000000000012e98 0x30 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012e98 spm_init_connection
.text.tfm_spm_partition_get_running_partition_id
0x0000000000012ec8 0x18 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012ec8 tfm_spm_partition_get_running_partition_id
.text.tfm_spm_is_ns_caller
0x0000000000012ee0 0x20 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012ee0 tfm_spm_is_ns_caller
.text.spm_get_connection
0x0000000000012f00 0x78 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012f00 spm_get_connection
.text.tfm_spm_init
0x0000000000012f78 0x64 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000012f78 tfm_spm_init
.text.load_a_partition_assuredly
0x0000000000012fdc 0xc8 secure_fw/spm/libtfm_spm.a(rom_loader.o)
0x0000000000012fdc load_a_partition_assuredly
.text.load_services_assuredly
0x00000000000130a4 0xb4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
0x00000000000130a4 load_services_assuredly
.text.tfm_nspm_ctx_init
0x0000000000013158 0x18 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
0x0000000000013158 tfm_nspm_ctx_init
.text.tfm_core_panic
0x0000000000013170 0x4 secure_fw/spm/libtfm_spm.a(utilities.o)
0x0000000000013170 tfm_core_panic
.text.spm_handle_programmer_errors
0x0000000000013174 0x18 secure_fw/spm/libtfm_spm.a(psa_api.o)
0x0000000000013174 spm_handle_programmer_errors
.text.tfm_spm_partition_psa_reply
0x000000000001318c 0x9a secure_fw/spm/libtfm_spm.a(psa_api.o)
0x000000000001318c tfm_spm_partition_psa_reply
.text.tfm_spm_partition_psa_panic
0x0000000000013226 0xc secure_fw/spm/libtfm_spm.a(psa_api.o)
0x0000000000013226 tfm_spm_partition_psa_panic
.text.tfm_spm_client_psa_call
0x0000000000013232 0x4e secure_fw/spm/libtfm_spm.a(psa_call_api.o)
0x0000000000013232 tfm_spm_client_psa_call
.text.tfm_spm_client_psa_framework_version
0x0000000000013280 0x6 secure_fw/spm/libtfm_spm.a(psa_version_api.o)
0x0000000000013280 tfm_spm_client_psa_framework_version
.text.tfm_spm_client_psa_version
0x0000000000013286 0x2c secure_fw/spm/libtfm_spm.a(psa_version_api.o)
0x0000000000013286 tfm_spm_client_psa_version
.text.backend_system_run
0x00000000000132b2 0x6 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x00000000000132b2 backend_system_run
.text.tfm_core_handler_mode
0x00000000000132b8 0x4 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
0x00000000000132b8 tfm_core_handler_mode
.text.connection_to_handle
0x00000000000132bc 0x6 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132bc connection_to_handle
.text.handle_to_connection
0x00000000000132c2 0x12 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132c2 handle_to_connection
.text.spm_init_connection_space
0x00000000000132d4 0x2 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132d4 spm_init_connection_space
.text.spm_allocate_connection
0x00000000000132d6 0xe secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132d6 spm_allocate_connection
.text.spm_validate_connection
0x00000000000132e4 0x4 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132e4 spm_validate_connection
.text.spm_free_connection
0x00000000000132e8 0xc secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x00000000000132e8 spm_free_connection
.text.tfm_arch_config_extensions
0x00000000000132f4 0x2 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
0x00000000000132f4 tfm_arch_config_extensions
.text.tfm_hal_memory_check
0x00000000000132f6 0x126 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0x00000000000132f6 tfm_hal_memory_check
.text.tfm_hal_set_up_static_boundaries
0x000000000001341c 0x2a secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0x000000000001341c tfm_hal_set_up_static_boundaries
.text.tfm_hal_platform_common_init
0x0000000000013446 0x36 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
0x0000000000013446 tfm_hal_platform_common_init
.text.SPU_IRQHandler
0x000000000001347c 0x1c secure_fw/spm/libtfm_spm.a(faults.o)
0x000000000001347c SPU_IRQHandler
.text.init_debug
0x0000000000013498 0x4 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x0000000000013498 init_debug
.text.tfm_arch_free_msp_and_exc_ret
0x000000000001349c 0x8 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
0x000000000001349c tfm_arch_free_msp_and_exc_ret
.text.tfm_arch_refresh_hardware_context
0x00000000000134a4 0x16 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
0x00000000000134a4 tfm_arch_refresh_hardware_context
.text.tfm_spm_check_client_version
0x00000000000134ba 0x24 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x00000000000134ba tfm_spm_check_client_version
.text.spm_msg_handle_to_connection
0x00000000000134de 0x28 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x00000000000134de spm_msg_handle_to_connection
.text.tfm_spm_get_client_id
0x0000000000013506 0x20 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000013506 tfm_spm_get_client_id
.text.update_caller_outvec_len
0x0000000000013526 0x1e secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x0000000000013526 update_caller_outvec_len
.text.load_irqs_assuredly
0x0000000000013544 0x2 secure_fw/spm/libtfm_spm.a(rom_loader.o)
0x0000000000013544 load_irqs_assuredly
.text.tfm_nspm_get_current_client_id
0x0000000000013546 0x6 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
0x0000000000013546 tfm_nspm_get_current_client_id
*libplatform_s*:*(.rodata*)
.rodata.CSWTCH.16
0x000000000001354c 0x3 platform/libplatform_s.a(system_nrf91.o)
.rodata.store_and_dump_context.str1.1
0x000000000001354f 0x8b platform/libplatform_s.a(exception_info.o)
*fill* 0x00000000000135da 0x2
.rodata.Driver_USART0
0x00000000000135dc 0x38 platform/libplatform_s.a(Driver_USART.o)
0x00000000000135dc Driver_USART0
.rodata.UART0_pins
0x0000000000013614 0x8 platform/libplatform_s.a(Driver_USART.o)
.rodata.DriverVersion
0x000000000001361c 0x4 platform/libplatform_s.a(Driver_USART.o)
*fill* 0x0000000000013620 0x0
.rodata.delay_machine_code.0
0x0000000000013620 0x6 platform/libplatform_s.a(nrfx_uarte.o)
.rodata.nrf_exception_info_store_context.str1.1
0x0000000000013626 0x16 platform/libplatform_s.a(nrf_exception_info.o)
.rodata.tfm_hal_platform_init.str1.1
0x000000000001363c 0x2e platform/libplatform_s.a(tfm_hal_platform.o)
*fill* 0x000000000001366a 0x2
.rodata.ranges
0x000000000001366c 0x20 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
*libtfm_spm*:*(.rodata*)
.rodata.HEX_TABLE
0x000000000001368c 0x10 secure_fw/spm/libtfm_spm.a(spm_log.o)
.rodata.main.str1.1
0x000000000001369c 0x5b secure_fw/spm/libtfm_spm.a(main.o)
.rodata.spm_svc_handler.str1.1
0x00000000000136f7 0x3b secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
*fill* 0x0000000000013732 0x2
.rodata.target_peripherals.0
0x0000000000013734 0x70 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.rodata.memory_regions
0x00000000000137a4 0x1c secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x00000000000137a4 memory_regions
.rodata.serv_pool_ea
0x00000000000137c0 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.rodata.part_pool_ea
0x00000000000137c4 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.rodata.ldinf_ea
0x00000000000137c8 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.TFM_UNPRIV_CODE
0x00000000000137e0 0x2820
*(SFN)
SFN 0x00000000000137e0 0x8c secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
0x00000000000137e0 __acle_se_tfm_psa_framework_version_veneer
0x00000000000137fe __acle_se_tfm_psa_version_veneer
0x000000000001381c __acle_se_tfm_psa_call_veneer
0x0000000000013844 __acle_se_tfm_psa_connect_veneer
0x0000000000013856 __acle_se_tfm_psa_close_veneer
*(SORT_BY_ALIGNMENT(.text*))
.text 0x000000000001386c 0x88 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.text 0x00000000000138f4 0x7c /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
0x00000000000138f4 _stack_init
0x00000000000138fc _mainCRTStartup
0x00000000000138fc _start
.text.tfm_psa_call_pack
0x0000000000013970 0x54 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000013970 tfm_psa_call_pack
.text.verify_header
0x00000000000139c4 0x40 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.verify_chain
0x0000000000013a04 0x3c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.buffer_alloc_calloc
0x0000000000013a40 0xf4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.buffer_alloc_free
0x0000000000013b34 0xe8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.text.mbedtls_memory_buffer_alloc_init
0x0000000000013c1c 0x64 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
0x0000000000013c1c mbedtls_memory_buffer_alloc_init
.text.mbedtls_free
0x0000000000013c80 0xc secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
0x0000000000013c80 mbedtls_free
.text.mbedtls_platform_set_calloc_free
0x0000000000013c8c 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
0x0000000000013c8c mbedtls_platform_set_calloc_free
.text.mbedtls_platform_zeroize
0x0000000000013ca0 0x18 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
0x0000000000013ca0 mbedtls_platform_zeroize
.text.mbedcrypto__psa_generate_random
0x0000000000013cb8 0x1c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x0000000000013cb8 mbedcrypto__psa_generate_random
.text.mbedtls_psa_crypto_free
0x0000000000013cd4 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x0000000000013cd4 mbedtls_psa_crypto_free
.text.mbedcrypto__psa_crypto_init
0x0000000000013cf8 0x38 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x0000000000013cf8 mbedcrypto__psa_crypto_init
.text.psa_initialize_key_slots
0x0000000000013d30 0x10 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
0x0000000000013d30 psa_initialize_key_slots
.text.psa_wipe_all_key_slots
0x0000000000013d40 0x24 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
0x0000000000013d40 psa_wipe_all_key_slots
.text.nrf_cc3xx_platform_init_hmac_drbg
0x0000000000013d64 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
0x0000000000013d64 nrf_cc3xx_platform_init_hmac_drbg
.text.nrf_cc3xx_platform_hmac_drbg_init
0x0000000000013da8 0x60 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
0x0000000000013da8 nrf_cc3xx_platform_hmac_drbg_init
.text.nrf_cc3xx_platform_hmac_drbg_get
0x0000000000013e08 0x44 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
0x0000000000013e08 nrf_cc3xx_platform_hmac_drbg_get
.text.mbedtls_zeroize_internal
0x0000000000013e4c 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
0x0000000000013e4c mbedtls_zeroize_internal
.text.cc_mbedtls_platform_zeroize
0x0000000000013e60 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
0x0000000000013e60 cc_mbedtls_platform_zeroize
.text.entropy_update
0x0000000000013e74 0x7c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.entropy_gather_internal.part.0
0x0000000000013ef0 0x88 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.text.cc_mbedtls_entropy_init
0x0000000000013f78 0x84 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
0x0000000000013f78 cc_mbedtls_entropy_init
.text.cc_mbedtls_entropy_func
0x0000000000013ffc 0x110 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
0x0000000000013ffc cc_mbedtls_entropy_func
.text.cc_hmac_sha256_starts.constprop.0
0x000000000001410c 0x108 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_init
0x0000000000014214 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
0x0000000000014214 cc_mbedtls_hmac_drbg_init
.text.cc_mbedtls_hmac_drbg_update
0x000000000001423c 0x170 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
0x000000000001423c cc_mbedtls_hmac_drbg_update
.text.cc_hmac_drbg_reseed_core
0x00000000000143ac 0xac /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.text.cc_mbedtls_hmac_drbg_seed
0x0000000000014458 0x54 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
0x0000000000014458 cc_mbedtls_hmac_drbg_seed
.text.cc_mbedtls_hmac_drbg_random_with_add
0x00000000000144ac 0x144 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
0x00000000000144ac cc_mbedtls_hmac_drbg_random_with_add
.text.RndStartupTest.constprop.0
0x00000000000145f0 0x98 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.text.CC_LibInit_HMAC_DRBG
0x0000000000014688 0xc0 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
0x0000000000014688 CC_LibInit_HMAC_DRBG
.text.CC_HalInit
0x0000000000014748 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x0000000000014748 CC_HalInit
.text.CC_HalTerminate
0x000000000001474c 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x000000000001474c CC_HalTerminate
.text.CC_HalClearInterruptBit
0x0000000000014750 0x1c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x0000000000014750 CC_HalClearInterruptBit
.text.CC_HalMaskInterrupt
0x000000000001476c 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x000000000001476c CC_HalMaskInterrupt
.text.CC_HalWaitInterrupt
0x0000000000014778 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x0000000000014778 CC_HalWaitInterrupt
.text.CC_HalWaitInterruptRND
0x0000000000014784 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
0x0000000000014784 CC_HalWaitInterruptRND
.text.CC_PalInit
0x0000000000014790 0x5c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x0000000000014790 CC_PalInit
.text.CC_PalTerminate
0x00000000000147ec 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000000147ec CC_PalTerminate
.text.CC_PalDmaInit
0x0000000000014820 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
0x0000000000014820 CC_PalDmaInit
.text.CC_PalDmaTerminate
0x0000000000014824 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
0x0000000000014824 CC_PalDmaTerminate
.text.CC_PalWaitInterruptRND
0x0000000000014828 0x2c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
0x0000000000014828 CC_PalWaitInterruptRND
.text.CC_PalWaitInterrupt
0x0000000000014854 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
0x0000000000014854 CC_PalWaitInterrupt
.text.CC_PalMemCopyPlat
0x000000000001486c 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
0x000000000001486c CC_PalMemCopyPlat
.text.CC_PalMemSetZeroPlat
0x0000000000014870 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
0x0000000000014870 CC_PalMemSetZeroPlat
.text.CC_PalMutexCreate
0x0000000000014878 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
0x0000000000014878 CC_PalMutexCreate
.text.CC_PalMutexDestroy
0x000000000001488c 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
0x000000000001488c CC_PalMutexDestroy
.text.CC_PalMutexLock
0x00000000000148a0 0x10 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
0x00000000000148a0 CC_PalMutexLock
.text.CC_PalMutexUnlock
0x00000000000148b0 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
0x00000000000148b0 CC_PalMutexUnlock
.text.CC_PalPowerSaveModeInit
0x00000000000148c4 0x3c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
0x00000000000148c4 CC_PalPowerSaveModeInit
.text.CC_PalPowerSaveModeSelect
0x0000000000014900 0x84 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
0x0000000000014900 CC_PalPowerSaveModeSelect
.text.mutex_init
0x0000000000014984 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x0000000000014984 mutex_init
.text.mutex_lock
0x0000000000014990 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x0000000000014990 mutex_lock
.text.mutex_unlock
0x000000000001499c 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x000000000001499c mutex_unlock
.text.nrf_cc3xx_platform_abort
0x00000000000149a8 0x24 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.text.CC_PalAbort
0x00000000000149cc 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
0x00000000000149cc CC_PalAbort
.text.mutex_free
0x0000000000014a00 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text.mutex_lock
0x0000000000014a34 0x48 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text.mutex_unlock
0x0000000000014a7c 0x38 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text.mutex_init
0x0000000000014ab4 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.text.startTrngHW
0x0000000000014ad4 0x140 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.text.LLF_RND_RepetitionCounterTest
0x0000000000014c14 0x64 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
0x0000000000014c14 LLF_RND_RepetitionCounterTest
.text.LLF_RND_AdaptiveProportionTest
0x0000000000014c78 0x80 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
0x0000000000014c78 LLF_RND_AdaptiveProportionTest
.text.getTrngSource
0x0000000000014cf8 0x2b4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.text.LLF_RND_GetTrngSource
0x0000000000014fac 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
0x0000000000014fac LLF_RND_GetTrngSource
.text.LLF_RND_RunTrngStartupTest
0x0000000000014fc4 0x1c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
0x0000000000014fc4 LLF_RND_RunTrngStartupTest
.text.mbedtls_hardware_poll
0x0000000000014fe0 0xfc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
0x0000000000014fe0 mbedtls_hardware_poll
.text.cc_mbedtls_sha256_init
0x00000000000150dc 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
0x00000000000150dc cc_mbedtls_sha256_init
.text.cc_mbedtls_sha256_free
0x0000000000015104 0xc /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
0x0000000000015104 cc_mbedtls_sha256_free
.text.cc_mbedtls_sha256_starts
0x0000000000015110 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
0x0000000000015110 cc_mbedtls_sha256_starts
.text.cc_mbedtls_sha256_update
0x0000000000015138 0x54 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
0x0000000000015138 cc_mbedtls_sha256_update
.text.cc_mbedtls_sha256_finish
0x000000000001518c 0x48 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
0x000000000001518c cc_mbedtls_sha256_finish
.text.mbedtls_sha_starts_internal
0x00000000000151d4 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
0x00000000000151d4 mbedtls_sha_starts_internal
.text.mbedtls_sha_finish_internal
0x00000000000151fc 0x5c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
0x00000000000151fc mbedtls_sha_finish_internal
.text.mbedtls_sha_update_internal
0x0000000000015258 0x1ec /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
0x0000000000015258 mbedtls_sha_update_internal
.text.cc_mbedtls_sha256
0x0000000000015444 0x50 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
0x0000000000015444 cc_mbedtls_sha256
.text.RNG_PLAT_SetUserRngParameters
0x0000000000015494 0x74 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
0x0000000000015494 RNG_PLAT_SetUserRngParameters
.text.CC_PalTrngParamGet
0x0000000000015508 0x114 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
0x0000000000015508 CC_PalTrngParamGet
.text.LLF_RND_WaitRngInterrupt
0x000000000001561c 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
0x000000000001561c LLF_RND_WaitRngInterrupt
.text.LLF_RND_GetRoscSampleCnt
0x000000000001563c 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
0x000000000001563c LLF_RND_GetRoscSampleCnt
.text.LLF_RND_GetFastestRosc
0x0000000000015670 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
0x0000000000015670 LLF_RND_GetFastestRosc
.text.LLF_RND_TurnOffTrng
0x0000000000015690 0x18 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
0x0000000000015690 LLF_RND_TurnOffTrng
.text.SetDataBuffersInfo
0x00000000000156a8 0x68 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
0x00000000000156a8 SetDataBuffersInfo
.text.InitHashDrv
0x0000000000015710 0x50 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
0x0000000000015710 InitHashDrv
.text.ProcessHashDrv
0x0000000000015760 0x22c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
0x0000000000015760 ProcessHashDrv
.text.FinishHashDrv
0x000000000001598c 0x74 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
0x000000000001598c FinishHashDrv
.text.CC_PalDataBufferAttrGet
0x0000000000015a00 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
0x0000000000015a00 CC_PalDataBufferAttrGet
.text.exit 0x0000000000015a08 0x28 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
0x0000000000015a08 exit
.text.__libc_init_array
0x0000000000015a30 0x48 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
0x0000000000015a30 __libc_init_array
.text 0x0000000000015a78 0xc8 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
0x0000000000015a78 cmse_check_address_range
.text._exit 0x0000000000015b40 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
0x0000000000015b40 _exit
.text.clear_caller_context
0x0000000000015b44 0x8 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.text.C_HardFault_Handler
0x0000000000015b4c 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b4c C_HardFault_Handler
.text.HardFault_Handler
0x0000000000015b50 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b50 HardFault_Handler
.text.C_MemManage_Handler
0x0000000000015b6c 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b6c C_MemManage_Handler
.text.MemManage_Handler
0x0000000000015b70 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b70 MemManage_Handler
.text.C_BusFault_Handler
0x0000000000015b8c 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b8c C_BusFault_Handler
.text.BusFault_Handler
0x0000000000015b90 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015b90 BusFault_Handler
.text.C_SecureFault_Handler
0x0000000000015bac 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015bac C_SecureFault_Handler
.text.SecureFault_Handler
0x0000000000015bb0 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015bb0 SecureFault_Handler
.text.C_UsageFault_Handler
0x0000000000015bcc 0x4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015bcc C_UsageFault_Handler
.text.UsageFault_Handler
0x0000000000015bd0 0x1c secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x0000000000015bd0 UsageFault_Handler
.text.memmove 0x0000000000015bec 0x6c secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
0x0000000000015bec memmove
.text.memcpy 0x0000000000015c58 0x4a secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
0x0000000000015c58 memcpy
.text.memset 0x0000000000015ca2 0x46 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
0x0000000000015ca2 memset
.text.psa_framework_version
0x0000000000015ce8 0x18 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000015ce8 psa_framework_version
.text.psa_version
0x0000000000015d00 0x1c secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000015d00 psa_version
.text.psa_read
0x0000000000015d1c 0x2a secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000015d1c psa_read
.text.psa_write
0x0000000000015d46 0x2a secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000015d46 psa_write
.text.psa_panic
0x0000000000015d70 0x18 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x0000000000015d70 psa_panic
.text.platform_calloc_uninit
0x0000000000015d88 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.platform_free_uninit
0x0000000000015d8c 0x2 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.text.mbedtls_zeroize_and_free
0x0000000000015d8e 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
0x0000000000015d8e mbedtls_zeroize_and_free
.text.psa_remove_key_data_from_memory
0x0000000000015da2 0x16 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x0000000000015da2 psa_remove_key_data_from_memory
.text.psa_wipe_key_slot
0x0000000000015db8 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x0000000000015db8 psa_wipe_key_slot
.text.psa_driver_wrapper_init
0x0000000000015dda 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x0000000000015dda psa_driver_wrapper_init
.text.psa_driver_wrapper_free
0x0000000000015dde 0x2 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x0000000000015dde psa_driver_wrapper_free
.text.psa_driver_wrapper_init_random
0x0000000000015de0 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x0000000000015de0 psa_driver_wrapper_init_random
.text.psa_driver_wrapper_get_random
0x0000000000015de4 0x22 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x0000000000015de4 psa_driver_wrapper_get_random
.text.psa_driver_wrapper_free_random
0x0000000000015e06 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x0000000000015e06 psa_driver_wrapper_free_random
.text 0x0000000000015e0a 0x38 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse_nonsecure_call.o)
0x0000000000015e0a __gnu_cmse_nonsecure_call
*(.init)
*fill* 0x0000000000015e42 0x2
.init 0x0000000000015e44 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
0x0000000000015e44 _init
.init 0x0000000000015e48 0x8 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
*(.fini)
.fini 0x0000000000015e50 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
0x0000000000015e50 _fini
.fini 0x0000000000015e54 0x8 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
*crtbegin.o(.ctors)
*crtbegin?.o(.ctors)
*(EXCLUDE_FILE(*crtend.o *crtend?.o) .ctors)
*(SORT_BY_NAME(.ctors.*))
*(.ctors)
*crtbegin.o(.dtors)
*crtbegin?.o(.dtors)
*(EXCLUDE_FILE(*crtend.o *crtend?.o) .dtors)
*(SORT_BY_NAME(.dtors.*))
*(.dtors)
*(SORT_BY_ALIGNMENT(.rodata*))
.rodata.CSWTCH.10
0x0000000000015e5c 0x1c /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.rodata.RndStartupTest.constprop.0.str1.4
0x0000000000015e78 0x6f /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
*fill* 0x0000000000015ee7 0x1
.rodata.CC_PalPowerSaveModeInit.str1.4
0x0000000000015ee8 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.rodata.mutex_free.str1.4
0x0000000000015f08 0x26 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
*fill* 0x0000000000015f2e 0x2
.rodata.mutex_init.str1.4
0x0000000000015f30 0x23 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
*fill* 0x0000000000015f53 0x1
.rodata.mbedtls_hardware_poll.str1.4
0x0000000000015f54 0x16 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
0x6e (size before relaxing)
*fill* 0x0000000000015f6a 0x2
.rodata.cc_mbedtls_sha256_init.str1.4
0x0000000000015f6c 0xe /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.rodata.ProcessHashDrv.str1.4
0x0000000000015f7a 0x6f /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
*fill* 0x0000000000015f7a 0x2
.rodata.HASH_LARVAL_SHA256
0x0000000000015f7c 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.rodata.HASH_LARVAL_SHA224
0x0000000000015f9c 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.rodata.HASH_LARVAL_SHA1
0x0000000000015fbc 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.rodata._global_impure_ptr
0x0000000000015fd0 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
0x0000000000015fd0 _global_impure_ptr
.rodata.str1.1
0x0000000000015fd4 0xb secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.rodata.str1.1
0x0000000000015fdf 0x15 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
*(.eh_frame*)
.eh_frame 0x0000000000015ff4 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.eh_frame 0x0000000000015ff4 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
0x0000000000016000 . = ALIGN (0x20)
*fill* 0x0000000000015ff8 0x8
0x00000000000137e0 Image$$TFM_UNPRIV_CODE_START$$RO$$Base = ADDR (.TFM_UNPRIV_CODE)
0x0000000000016000 Image$$TFM_UNPRIV_CODE_END$$RO$$Limit = (ADDR (.TFM_UNPRIV_CODE) + SIZEOF (.TFM_UNPRIV_CODE))
.glue_7 0x0000000000016000 0x0
.glue_7 0x0000000000016000 0x0 linker stubs
.glue_7t 0x0000000000016000 0x0
.glue_7t 0x0000000000016000 0x0 linker stubs
.vfp11_veneer 0x0000000000016000 0x0
.vfp11_veneer 0x0000000000016000 0x0 linker stubs
.v4_bx 0x0000000000016000 0x0
.v4_bx 0x0000000000016000 0x0 linker stubs
.iplt 0x0000000000016000 0x0
.iplt 0x0000000000016000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.rel.dyn 0x0000000000016000 0x0
.rel.iplt 0x0000000000016000 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.gnu.sgstubs 0x0000000000017c00 0x40
*(.gnu.sgstubs*)
.gnu.sgstubs.__stub
0x0000000000017c00 0x28 linker stubs
0x0000000000017c00 tfm_psa_framework_version_veneer
0x0000000000017c08 tfm_psa_version_veneer
0x0000000000017c10 tfm_psa_close_veneer
0x0000000000017c18 tfm_psa_connect_veneer
0x0000000000017c20 tfm_psa_call_veneer
.sgstubs_end 0x0000000000018000 0x0
.tfm_secure_data_start
0x0000000020000000 0x0
0x0000000020000000 . = ALIGN (0x4)
.tfm_bl2_shared_data
0x0000000020000000 0x400
0x0000000020000400 . = (. + 0x400)
*fill* 0x0000000020000000 0x400
.msp_stack 0x0000000020000400 0x7f8
0x0000000020000bf8 . = (. + (__msp_stack_size__ - 0x8))
*fill* 0x0000000020000400 0x7f8
0x0000000020000400 Image$$ARM_LIB_STACK$$ZI$$Base = ADDR (.msp_stack)
0x0000000020000bf8 Image$$ARM_LIB_STACK$$ZI$$Limit = (ADDR (.msp_stack) + SIZEOF (.msp_stack))
.msp_stack_seal_res
0x0000000020000bf8 0x8
0x0000000020000c00 . = (. + 0x8)
*fill* 0x0000000020000bf8 0x8
0x0000000020000bf8 __StackSeal = ADDR (.msp_stack_seal_res)
0x0000000020000c00 . = ALIGN (0x20)
0x0000000020000c00 Image$$TFM_APP_RW_STACK_START$$Base = .
.TFM_APP_ROT_LINKER_DATA
0x0000000020000c00 0x0 load address 0x0000000000017c40
*tfm_app_rot_partition*:(SORT_BY_ALIGNMENT(.data*))
*(TFM_*_APP-ROT_ATTR_RW)
0x0000000020000c00 . = ALIGN (0x4)
0x0000000020000c00 Image$$TFM_APP_ROT_LINKER_DATA$$RW$$Base = ADDR (.TFM_APP_ROT_LINKER_DATA)
0x0000000020000c00 Image$$TFM_APP_ROT_LINKER_DATA$$RW$$Limit = (ADDR (.TFM_APP_ROT_LINKER_DATA) + SIZEOF (.TFM_APP_ROT_LINKER_DATA))
.TFM_APP_ROT_LINKER_BSS
0x0000000020000c00 0x20
0x0000000020000c00 start_of_TFM_APP_ROT_LINKER = .
*tfm_app_rot_partition*:(SORT_BY_ALIGNMENT(.bss*))
*tfm_app_rot_partition*:*(COMMON)
*(TFM_*_APP-ROT_ATTR_ZI)
0x0000000020000c04 . = (. + (. - start_of_TFM_APP_ROT_LINKER)?0x0:0x4)
*fill* 0x0000000020000c00 0x4
0x0000000020000c20 . = ALIGN (0x20)
*fill* 0x0000000020000c04 0x1c
0x0000000020000c00 Image$$TFM_APP_ROT_LINKER_DATA$$ZI$$Base = ADDR (.TFM_APP_ROT_LINKER_BSS)
0x0000000020000c20 Image$$TFM_APP_ROT_LINKER_DATA$$ZI$$Limit = (ADDR (.TFM_APP_ROT_LINKER_BSS) + SIZEOF (.TFM_APP_ROT_LINKER_BSS))
0x0000000020000c20 Image$$TFM_APP_RW_STACK_END$$Base = .
0x0000000020000c20 Image$$TFM_PSA_RW_STACK_START$$Base = .
.TFM_PSA_ROT_LINKER_DATA
0x0000000020000c20 0x0 load address 0x0000000000017c40
*tfm_psa_rot_partition*:(SORT_BY_ALIGNMENT(.data*))
*(TFM_*_PSA-ROT_ATTR_RW)
0x0000000020000c20 . = ALIGN (0x4)
0x0000000020000c20 Image$$TFM_PSA_ROT_LINKER_DATA$$RW$$Base = ADDR (.TFM_PSA_ROT_LINKER_DATA)
0x0000000020000c20 Image$$TFM_PSA_ROT_LINKER_DATA$$RW$$Limit = (ADDR (.TFM_PSA_ROT_LINKER_DATA) + SIZEOF (.TFM_PSA_ROT_LINKER_DATA))
.TFM_PSA_ROT_LINKER_BSS
0x0000000020000c20 0x460
0x0000000020000c20 start_of_TFM_PSA_ROT_LINKER = .
*tfm_psa_rot_partition*:(SORT_BY_ALIGNMENT(.bss*))
.bss.scratch 0x0000000020000c20 0x408 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.bss.operations
0x0000000020001028 0x28 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.bss.mbedtls_mem_buf
0x0000000020001050 0x1 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.bss.mbedtls_version_full
0x0000000020001051 0x12 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
*tfm_psa_rot_partition*:*(COMMON)
*(TFM_*_PSA-ROT_ATTR_ZI)
0x0000000020001063 . = (. + (. - start_of_TFM_PSA_ROT_LINKER)?0x0:0x4)
0x0000000020001080 . = ALIGN (0x20)
*fill* 0x0000000020001063 0x1d
0x0000000020000c20 Image$$TFM_PSA_ROT_LINKER_DATA$$ZI$$Base = ADDR (.TFM_PSA_ROT_LINKER_BSS)
0x0000000020001080 Image$$TFM_PSA_ROT_LINKER_DATA$$ZI$$Limit = (ADDR (.TFM_PSA_ROT_LINKER_BSS) + SIZEOF (.TFM_PSA_ROT_LINKER_BSS))
0x0000000020001080 Image$$TFM_PSA_RW_STACK_END$$Base = .
.TFM_DATA 0x0000000020001080 0x128 load address 0x0000000000017c40
*(SORT_BY_ALIGNMENT(.data*))
.data.ret_err 0x0000000020001080 0x4 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
0x0000000020001080 ret_err
.data.UART0_Resources
0x0000000020001084 0x24 platform/libplatform_s.a(Driver_USART.o)
.data.dev_mpu_s
0x00000000200010a8 0x4 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0x00000000200010a8 dev_mpu_s
.data.tfm_peripheral_vmc
0x00000000200010ac 0x8 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x00000000200010ac tfm_peripheral_vmc
.data.tfm_peripheral_uarte0
0x00000000200010b4 0x8 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x00000000200010b4 tfm_peripheral_uarte0
.data.serv_pool_sa
0x00000000200010bc 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.data.part_pool_sa
0x00000000200010c0 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.data.ldinf_sa
0x00000000200010c4 0x4 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.data.mbedtls_free_func
0x00000000200010c8 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.data.mbedtls_calloc_func
0x00000000200010cc 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.data.memset_func
0x00000000200010d0 0x4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.data.pCCRndCryptoMutex
0x00000000200010d4 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000200010d4 pCCRndCryptoMutex
.data.CCPowerMutex
0x00000000200010d8 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000200010d8 CCPowerMutex
.data.CCRndCryptoMutex
0x00000000200010dc 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000200010dc CCRndCryptoMutex
.data.CCAsymCryptoMutex
0x00000000200010e0 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000200010e0 CCAsymCryptoMutex
.data.CCSymCryptoMutex
0x00000000200010e4 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
0x00000000200010e4 CCSymCryptoMutex
.data.mbedtls_mutex_unlock
0x00000000200010e8 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x00000000200010e8 mbedtls_mutex_unlock
.data.mbedtls_mutex_lock
0x00000000200010ec 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x00000000200010ec mbedtls_mutex_lock
.data.mbedtls_mutex_init
0x00000000200010f0 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
0x00000000200010f0 mbedtls_mutex_init
.data.platform_abort_apis
0x00000000200010f4 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
0x00000000200010f4 platform_abort_apis
.data.platform_mutexes
0x00000000200010fc 0x14 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
0x00000000200010fc platform_mutexes
.data.platform_mutex_apis
0x0000000020001110 0x10 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
0x0000000020001110 platform_mutex_apis
.data.power_mutex
0x0000000020001120 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.data.rng_mutex
0x0000000020001128 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.data.asym_mutex
0x0000000020001130 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.data.sym_mutex
0x0000000020001138 0x8 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.data.impure_data
0x0000000020001140 0x60 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
0x00000000200011a0 . = ALIGN (0x4)
0x00000000200011a0 PROVIDE (__preinit_array_start = .)
*(.preinit_array)
0x00000000200011a0 PROVIDE (__preinit_array_end = .)
0x00000000200011a0 . = ALIGN (0x4)
0x00000000200011a0 PROVIDE (__init_array_start = .)
*(SORT_BY_NAME(.init_array.*))
*(.init_array)
.init_array 0x00000000200011a0 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
0x00000000200011a4 PROVIDE (__init_array_end = .)
0x00000000200011a4 . = ALIGN (0x4)
[!provide] PROVIDE (__fini_array_start = .)
*(SORT_BY_NAME(.fini_array.*))
*(.fini_array)
.fini_array 0x00000000200011a4 0x4 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
[!provide] PROVIDE (__fini_array_end = .)
*(.jcr*)
0x00000000200011a8 . = ALIGN (0x4)
0x0000000020001080 Image$$ER_TFM_DATA$$RW$$Base = ADDR (.TFM_DATA)
0x00000000200011a8 Image$$ER_TFM_DATA$$RW$$Limit = (ADDR (.TFM_DATA) + SIZEOF (.TFM_DATA))
.tm_clone_table
0x00000000200011a8 0x0 load address 0x0000000000017d68
.tm_clone_table
0x00000000200011a8 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.tm_clone_table
0x00000000200011a8 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.igot.plt 0x00000000200011a8 0x0 load address 0x0000000000017d68
.igot.plt 0x00000000200011a8 0x0 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.TFM_BSS 0x00000000200011a8 0x1710
0x00000000200011a8 __bss_start__ = .
0x00000000200011a8 __partition_runtime_start__ = .
*(.bss.part_runtime_priority_00)
.bss.part_runtime_priority_00
0x00000000200011a8 0x24 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
*(.bss.part_runtime_priority_01)
*(.bss.part_runtime_priority_02)
.bss.part_runtime_priority_02
0x00000000200011cc 0x24 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.bss.part_runtime_priority_02
0x00000000200011f0 0x24 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
*(.bss.part_runtime_priority_03)
0x0000000020001214 __partition_runtime_end__ = .
0x0000000020001214 . = ALIGN (0x4)
0x0000000020001214 __service_runtime_start__ = .
*(.bss.serv_runtime_priority_00)
*(.bss.serv_runtime_priority_01)
*(.bss.serv_runtime_priority_02)
.bss.serv_runtime_priority_02
0x0000000020001214 0xc secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.bss.serv_runtime_priority_02
0x0000000020001220 0xc secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
*(.bss.serv_runtime_priority_03)
0x000000002000122c __service_runtime_end__ = .
*(SORT_BY_ALIGNMENT(.bss*))
*fill* 0x000000002000122c 0x14
.bss.ns_agent_tz_stack
0x0000000020001240 0x680 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
0x0000000020001240 ns_agent_tz_stack
.bss 0x00000000200018c0 0x1c /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.bss.exception_info
0x00000000200018dc 0x7c platform/libplatform_s.a(exception_info.o)
.bss.m_cb 0x0000000020001958 0x50 platform/libplatform_s.a(nrfx_uarte.o)
.bss.in_critical_section
0x00000000200019a8 0x4 platform/libplatform_s.a(nrfx_glue.o)
.bss.spm_boundary
0x00000000200019ac 0x4 secure_fw/spm/libtfm_spm.a(main.o)
0x00000000200019ac spm_boundary
.bss.p_current_partition
0x00000000200019b0 0x4 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x00000000200019b0 p_current_partition
.bss.partition_listhead
0x00000000200019b4 0x8 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x00000000200019b4 partition_listhead
.bss.n_configured_regions
0x00000000200019bc 0x4 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.bss.is_boot_data_valid
0x00000000200019c0 0x4 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.bss.stateless_services_ref_tbl
0x00000000200019c4 0x80 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x00000000200019c4 stateless_services_ref_tbl
.bss.services_listhead
0x0000000020001a44 0x8 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.bss.heap 0x0000000020001a4c 0x14 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.bss.global_data
0x0000000020001a60 0x8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.bss.global_data
0x0000000020001a68 0x584 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.bss.nrf_exc_info
0x0000000020001fec 0xc platform/libplatform_s.a(nrf_exception_info.o)
.bss.ns_callback
0x0000000020001ff8 0x4 platform/libplatform_s.a(ns_fault_service.o)
.bss.ns_callback_context
0x0000000020001ffc 0x4 platform/libplatform_s.a(ns_fault_service.o)
.bss.nrf_cc3xx_platform_rng_initialized
0x0000000020002000 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.bss.nrf_cc3xx_platform_initialized
0x0000000020002004 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.bss.global_ctx
0x0000000020002008 0x250 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.bss.hmac_ctx 0x0000000020002258 0x80 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.bss.rndWorkbuff.0
0x00000000200022d8 0x220 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.bss.random_seed_filled
0x00000000200024f8 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.bss.random_seed_buffer
0x00000000200024fc 0x68 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.bss.use_count
0x0000000020002564 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.bss.power_mutex_int
0x0000000020002568 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.bss.rng_mutex_int
0x000000002000256c 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.bss.asym_mutex_int
0x0000000020002570 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.bss.sym_mutex_int
0x0000000020002574 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.bss.rndState.0
0x0000000020002578 0x4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.bss.trngParams.1
0x000000002000257c 0x28 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.bss.rndWorkBuffer.2
0x00000000200025a4 0x220 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.bss.ctx.0 0x00000000200027c4 0xf4 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
*(COMMON)
0x00000000200028b8 . = ALIGN (0x4)
0x00000000200028b8 __bss_end__ = .
0x00000000200011a8 Image$$ER_TFM_DATA$$ZI$$Base = ADDR (.TFM_BSS)
0x00000000200028b8 Image$$ER_TFM_DATA$$ZI$$Limit = (ADDR (.TFM_BSS) + SIZEOF (.TFM_BSS))
0x00000000200011a8 Image$$ER_PART_RT_POOL$$ZI$$Base = __partition_runtime_start__
0x0000000020001214 Image$$ER_PART_RT_POOL$$ZI$$Limit = __partition_runtime_end__
0x0000000020001214 Image$$ER_SERV_RT_POOL$$ZI$$Base = __service_runtime_start__
0x000000002000122c Image$$ER_SERV_RT_POOL$$ZI$$Limit = __service_runtime_end__
0x0000000020001080 Image$$ER_TFM_DATA$$Base = ADDR (.TFM_DATA)
0x00000000200028b8 Image$$ER_TFM_DATA$$Limit = ((ADDR (.TFM_DATA) + SIZEOF (.TFM_DATA)) + SIZEOF (.TFM_BSS))
0x0000000000017c00 Image$$ER_VENEER$$Base = ADDR (.gnu.sgstubs)
0x0000000000018000 Image$$VENEER_ALIGN$$Limit = ADDR (.sgstubs_end)
0x0000000000000001 ASSERT (((Image$$VENEER_ALIGN$$Limit - Image$$ER_VENEER$$Base) <= 0x400), Veneer region overflowed)
0x0000000000018000 Load$$LR$$LR_NS_PARTITION$$Base = 0x18000
0x0000000020000bf8 PROVIDE (__stack = Image$$ARM_LIB_STACK$$ZI$$Limit)
OUTPUT(bin/tfm_s.axf elf32-littlearm)
LOAD linker stubs
.ARM.attributes
0x0000000000000000 0x30
.ARM.attributes
0x0000000000000000 0x22 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crti.o
.ARM.attributes
0x0000000000000022 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtbegin.o
.ARM.attributes
0x0000000000000054 0x20 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/crt0.o
.ARM.attributes
0x0000000000000074 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.ARM.attributes
0x00000000000000a8 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.ARM.attributes
0x00000000000000dc 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.ARM.attributes
0x0000000000000110 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.ARM.attributes
0x0000000000000144 0x34 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.ARM.attributes
0x0000000000000178 0x34 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.ARM.attributes
0x00000000000001ac 0x34 platform/libplatform_s.a(hw_init.o)
.ARM.attributes
0x00000000000001e0 0x34 platform/libplatform_s.a(system_nrf91.o)
.ARM.attributes
0x0000000000000214 0x34 platform/libplatform_s.a(exception_info.o)
.ARM.attributes
0x0000000000000248 0x34 platform/libplatform_s.a(uart_stdout.o)
.ARM.attributes
0x000000000000027c 0x34 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.ARM.attributes
0x00000000000002b0 0x34 platform/libplatform_s.a(Driver_USART.o)
.ARM.attributes
0x00000000000002e4 0x34 platform/libplatform_s.a(nrfx_uarte.o)
.ARM.attributes
0x0000000000000318 0x34 platform/libplatform_s.a(nrfx_glue.o)
.ARM.attributes
0x000000000000034c 0x34 platform/libplatform_s.a(spu.o)
.ARM.attributes
0x0000000000000380 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.ARM.attributes
0x00000000000003b4 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.ARM.attributes
0x00000000000003e8 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.ARM.attributes
0x000000000000041c 0x34 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.ARM.attributes
0x0000000000000450 0x34 secure_fw/spm/libtfm_spm.a(utilities.o)
.ARM.attributes
0x0000000000000484 0x34 secure_fw/spm/libtfm_spm.a(spm_log.o)
.ARM.attributes
0x00000000000004b8 0x34 secure_fw/spm/libtfm_spm.a(main.o)
.ARM.attributes
0x00000000000004ec 0x34 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.ARM.attributes
0x0000000000000520 0x34 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.ARM.attributes
0x0000000000000554 0x34 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.ARM.attributes
0x0000000000000588 0x34 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.ARM.attributes
0x00000000000005bc 0x34 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.ARM.attributes
0x00000000000005f0 0x34 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.ARM.attributes
0x0000000000000624 0x34 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.ARM.attributes
0x0000000000000658 0x34 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.ARM.attributes
0x000000000000068c 0x34 secure_fw/spm/libtfm_spm.a(faults.o)
.ARM.attributes
0x00000000000006c0 0x34 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.ARM.attributes
0x00000000000006f4 0x34 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.ARM.attributes
0x0000000000000728 0x34 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.ARM.attributes
0x000000000000075c 0x34 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.ARM.attributes
0x0000000000000790 0x34 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.ARM.attributes
0x00000000000007c4 0x34 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.ARM.attributes
0x00000000000007f8 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.ARM.attributes
0x000000000000082c 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.ARM.attributes
0x0000000000000860 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.ARM.attributes
0x0000000000000894 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.ARM.attributes
0x00000000000008c8 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.ARM.attributes
0x00000000000008fc 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.ARM.attributes
0x0000000000000930 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.ARM.attributes
0x0000000000000964 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.ARM.attributes
0x0000000000000998 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.ARM.attributes
0x00000000000009cc 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.ARM.attributes
0x0000000000000a00 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.ARM.attributes
0x0000000000000a34 0x34 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.ARM.attributes
0x0000000000000a68 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.ARM.attributes
0x0000000000000a9c 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.ARM.attributes
0x0000000000000ad0 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.ARM.attributes
0x0000000000000b04 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.ARM.attributes
0x0000000000000b38 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.ARM.attributes
0x0000000000000b6c 0x34 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.ARM.attributes
0x0000000000000ba0 0x34 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.ARM.attributes
0x0000000000000bd4 0x34 platform/libplatform_s.a(mpu_armv8m_drv.o)
.ARM.attributes
0x0000000000000c08 0x34 platform/libplatform_s.a(nrf_exception_info.o)
.ARM.attributes
0x0000000000000c3c 0x34 platform/libplatform_s.a(tfm_hal_platform.o)
.ARM.attributes
0x0000000000000c70 0x34 platform/libplatform_s.a(dummy_otp.o)
.ARM.attributes
0x0000000000000ca4 0x34 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.ARM.attributes
0x0000000000000cd8 0x34 platform/libplatform_s.a(dummy_provisioning.o)
.ARM.attributes
0x0000000000000d0c 0x34 platform/libplatform_s.a(ns_fault_service.o)
.ARM.attributes
0x0000000000000d40 0x34 platform/libplatform_s.a(tfm_platform_system.o)
.ARM.attributes
0x0000000000000d74 0x34 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.ARM.attributes
0x0000000000000da8 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
.ARM.attributes
0x0000000000000ddc 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.ARM.attributes
0x0000000000000e10 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
.ARM.attributes
0x0000000000000e44 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.ARM.attributes
0x0000000000000e78 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.ARM.attributes
0x0000000000000eac 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.ARM.attributes
0x0000000000000ee0 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.ARM.attributes
0x0000000000000f14 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
.ARM.attributes
0x0000000000000f48 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
.ARM.attributes
0x0000000000000f7c 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
.ARM.attributes
0x0000000000000fb0 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.ARM.attributes
0x0000000000000fe4 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
.ARM.attributes
0x0000000000001018 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.ARM.attributes
0x000000000000104c 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.ARM.attributes
0x0000000000001080 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.ARM.attributes
0x00000000000010b4 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.ARM.attributes
0x00000000000010e8 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.ARM.attributes
0x000000000000111c 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.ARM.attributes
0x0000000000001150 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.ARM.attributes
0x0000000000001184 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.ARM.attributes
0x00000000000011b8 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
.ARM.attributes
0x00000000000011ec 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
.ARM.attributes
0x0000000000001220 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
.ARM.attributes
0x0000000000001254 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.ARM.attributes
0x0000000000001288 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
.ARM.attributes
0x00000000000012bc 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.ARM.attributes
0x00000000000012f0 0x34 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
.ARM.attributes
0x0000000000001324 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
.ARM.attributes
0x0000000000001356 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-impure.o)
.ARM.attributes
0x0000000000001388 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
.ARM.attributes
0x00000000000013ba 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
.ARM.attributes
0x00000000000013ec 0x20 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse_nonsecure_call.o)
.ARM.attributes
0x000000000000140c 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtend.o
.ARM.attributes
0x000000000000143e 0x22 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/crtn.o
.ARM.attributes
0x0000000000001460 0x32 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libnosys.a(_exit.o)
.comment 0x0000000000000000 0x42
.comment 0x0000000000000000 0x22 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
0x23 (size before relaxing)
.comment 0x0000000000000022 0x23 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.comment 0x0000000000000022 0x23 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.comment 0x0000000000000022 0x23 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.comment 0x0000000000000022 0x23 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.comment 0x0000000000000022 0x23 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(hw_init.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(system_nrf91.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(exception_info.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(uart_stdout.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(Driver_USART.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(nrfx_uarte.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(nrfx_glue.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(spu.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(utilities.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(spm_log.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(main.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(faults.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.comment 0x0000000000000022 0x23 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.comment 0x0000000000000022 0x23 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(mpu_armv8m_drv.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(nrf_exception_info.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(tfm_hal_platform.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(dummy_otp.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(dummy_provisioning.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(ns_fault_service.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(tfm_platform_system.o)
.comment 0x0000000000000022 0x23 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.comment 0x0000000000000022 0x20 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform.c.obj)
0x21 (size before relaxing)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_hmac_drbg.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_common.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(custom_entropy.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hmac_drbg_alt.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_lib.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_hal.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_dma.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_interrupt_ctrl.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mem.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_mutex.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_pm.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(threading_alt.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_abort.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(nrf_cc3xx_platform_mutex.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd_trng90b.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(trng_api.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256_alt.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(mbedtls_hash_common.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(sha256.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_rng_plat.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_trng.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(llf_rnd.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(driver_common.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(hash_driver.c.obj)
.comment 0x0000000000000042 0x21 /home/mike/Documents/ncs/v2.7.0/nrfxlib/crypto/nrf_cc310_platform/lib/cortex-m33/soft-float/no-interrupts/libnrf_cc310_platform_0.9.19.a(cc_pal_buff_attr.c.obj)
.debug_info 0x0000000000000000 0x3143c
.debug_info 0x0000000000000000 0x26d secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_info 0x000000000000026d 0x9d4 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_info 0x0000000000000c41 0x135 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_info 0x0000000000000d76 0x117 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_info 0x0000000000000e8d 0x4ed secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.debug_info 0x000000000000137a 0x4d0 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.debug_info 0x000000000000184a 0x493 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.debug_info 0x0000000000001cdd 0x14ba platform/libplatform_s.a(hw_init.o)
.debug_info 0x0000000000003197 0x1c0e platform/libplatform_s.a(system_nrf91.o)
.debug_info 0x0000000000004da5 0x9f6 platform/libplatform_s.a(exception_info.o)
.debug_info 0x000000000000579b 0x7a5 platform/libplatform_s.a(uart_stdout.o)
.debug_info 0x0000000000005f40 0x12f platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_info 0x000000000000606f 0x252b platform/libplatform_s.a(Driver_USART.o)
.debug_info 0x000000000000859a 0xa619 platform/libplatform_s.a(nrfx_uarte.o)
.debug_info 0x0000000000012bb3 0x110 platform/libplatform_s.a(nrfx_glue.o)
.debug_info 0x0000000000012cc3 0x13da platform/libplatform_s.a(spu.o)
.debug_info 0x000000000001409d 0x251 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_info 0x00000000000142ee 0x17e secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_info 0x000000000001446c 0x16d secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_info 0x00000000000145d9 0xafa secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_info 0x00000000000150d3 0x97 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_info 0x000000000001516a 0x28f secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_info 0x00000000000153f9 0x3c4 secure_fw/spm/libtfm_spm.a(main.o)
.debug_info 0x00000000000157bd 0x790 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_info 0x0000000000015f4d 0x78d secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_info 0x00000000000166da 0x382 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_info 0x0000000000016a5c 0x6c2 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_info 0x000000000001711e 0x91b secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_info 0x0000000000017a39 0xac secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_info 0x0000000000017ae5 0x153f secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_info 0x0000000000019024 0x299 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_info 0x00000000000192bd 0xc48 secure_fw/spm/libtfm_spm.a(faults.o)
.debug_info 0x0000000000019f05 0x1cbd secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_info 0x000000000001bbc2 0x6b4 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_info 0x000000000001c276 0x48c secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_info 0x000000000001c702 0xc77 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_info 0x000000000001d379 0x77e secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_info 0x000000000001daf7 0x4b1 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_info 0x000000000001dfa8 0x102e secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_info 0x000000000001efd6 0xaaf secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_info 0x000000000001fa85 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_info 0x000000000001fc43 0x15d secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_info 0x000000000001fda0 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_info 0x000000000001ff5e 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_info 0x000000000002011c 0x209 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_info 0x0000000000020325 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_info 0x00000000000204e3 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_info 0x00000000000206a1 0x1ce secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_info 0x000000000002086f 0x5e2 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_info 0x0000000000020e51 0x1be secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_info 0x000000000002100f 0x5ff secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_info 0x000000000002160e 0x2fa secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_info 0x0000000000021908 0x54c secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_info 0x0000000000021e54 0x88b0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_info 0x000000000002a704 0xc1e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_info 0x000000000002b322 0x2c30 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_info 0x000000000002df52 0x586 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_info 0x000000000002e4d8 0x5ad platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_info 0x000000000002ea85 0x7d2 platform/libplatform_s.a(nrf_exception_info.o)
.debug_info 0x000000000002f257 0x5a4 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_info 0x000000000002f7fb 0x1ed platform/libplatform_s.a(dummy_otp.o)
.debug_info 0x000000000002f9e8 0x4d2 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_info 0x000000000002feba 0xef platform/libplatform_s.a(dummy_provisioning.o)
.debug_info 0x000000000002ffa9 0x68b platform/libplatform_s.a(ns_fault_service.o)
.debug_info 0x0000000000030634 0xa3a platform/libplatform_s.a(tfm_platform_system.o)
.debug_info 0x000000000003106e 0x3ce platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_abbrev 0x0000000000000000 0x86c1
.debug_abbrev 0x0000000000000000 0x142 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_abbrev 0x0000000000000142 0x2f7 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_abbrev 0x0000000000000439 0xd1 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_abbrev 0x000000000000050a 0x99 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_abbrev 0x00000000000005a3 0x128 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.debug_abbrev 0x00000000000006cb 0x128 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.debug_abbrev 0x00000000000007f3 0x11b secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.debug_abbrev 0x000000000000090e 0x25c platform/libplatform_s.a(hw_init.o)
.debug_abbrev 0x0000000000000b6a 0x3b6 platform/libplatform_s.a(system_nrf91.o)
.debug_abbrev 0x0000000000000f20 0x2d9 platform/libplatform_s.a(exception_info.o)
.debug_abbrev 0x00000000000011f9 0x22f platform/libplatform_s.a(uart_stdout.o)
.debug_abbrev 0x0000000000001428 0xb3 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_abbrev 0x00000000000014db 0x583 platform/libplatform_s.a(Driver_USART.o)
.debug_abbrev 0x0000000000001a5e 0x620 platform/libplatform_s.a(nrfx_uarte.o)
.debug_abbrev 0x000000000000207e 0x8d platform/libplatform_s.a(nrfx_glue.o)
.debug_abbrev 0x000000000000210b 0x358 platform/libplatform_s.a(spu.o)
.debug_abbrev 0x0000000000002463 0x168 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_abbrev 0x00000000000025cb 0xc5 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_abbrev 0x0000000000002690 0xc0 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_abbrev 0x0000000000002750 0x2f9 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_abbrev 0x0000000000002a49 0x65 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_abbrev 0x0000000000002aae 0x1b6 secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_abbrev 0x0000000000002c64 0x210 secure_fw/spm/libtfm_spm.a(main.o)
.debug_abbrev 0x0000000000002e74 0x1e2 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_abbrev 0x0000000000003056 0x24d secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_abbrev 0x00000000000032a3 0x22d secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_abbrev 0x00000000000034d0 0x242 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_abbrev 0x0000000000003712 0x1ea secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_abbrev 0x00000000000038fc 0x64 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_abbrev 0x0000000000003960 0x54d secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_abbrev 0x0000000000003ead 0x156 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_abbrev 0x0000000000004003 0x1b8 secure_fw/spm/libtfm_spm.a(faults.o)
.debug_abbrev 0x00000000000041bb 0x374 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_abbrev 0x000000000000452f 0x267 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_abbrev 0x0000000000004796 0x259 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_abbrev 0x00000000000049ef 0x35d secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_abbrev 0x0000000000004d4c 0x205 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_abbrev 0x0000000000004f51 0x146 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_abbrev 0x0000000000005097 0x3a2 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_abbrev 0x0000000000005439 0x202 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_abbrev 0x000000000000563b 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_abbrev 0x000000000000570e 0xc4 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_abbrev 0x00000000000057d2 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_abbrev 0x00000000000058a5 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_abbrev 0x0000000000005978 0xf0 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_abbrev 0x0000000000005a68 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_abbrev 0x0000000000005b3b 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_abbrev 0x0000000000005c0e 0xf3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_abbrev 0x0000000000005d01 0x22c secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_abbrev 0x0000000000005f2d 0xd3 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_abbrev 0x0000000000006000 0x2e3 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_abbrev 0x00000000000062e3 0x216 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_abbrev 0x00000000000064f9 0x1bd secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_abbrev 0x00000000000066b6 0x65e secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_abbrev 0x0000000000006d14 0x3ea secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_abbrev 0x00000000000070fe 0x3b0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_abbrev 0x00000000000074ae 0x24d secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_abbrev 0x00000000000076fb 0x1e5 platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_abbrev 0x00000000000078e0 0x234 platform/libplatform_s.a(nrf_exception_info.o)
.debug_abbrev 0x0000000000007b14 0x1f1 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_abbrev 0x0000000000007d05 0x147 platform/libplatform_s.a(dummy_otp.o)
.debug_abbrev 0x0000000000007e4c 0x14d platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_abbrev 0x0000000000007f99 0x90 platform/libplatform_s.a(dummy_provisioning.o)
.debug_abbrev 0x0000000000008029 0x254 platform/libplatform_s.a(ns_fault_service.o)
.debug_abbrev 0x000000000000827d 0x29c platform/libplatform_s.a(tfm_platform_system.o)
.debug_abbrev 0x0000000000008519 0x1a8 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_loc 0x0000000000000000 0x191c9
.debug_loc 0x0000000000000000 0x6f secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_loc 0x000000000000006f 0xb0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_loc 0x000000000000011f 0x328 platform/libplatform_s.a(hw_init.o)
.debug_loc 0x0000000000000447 0x399 platform/libplatform_s.a(system_nrf91.o)
.debug_loc 0x00000000000007e0 0x302 platform/libplatform_s.a(exception_info.o)
.debug_loc 0x0000000000000ae2 0x13c platform/libplatform_s.a(uart_stdout.o)
.debug_loc 0x0000000000000c1e 0x4a platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_loc 0x0000000000000c68 0x920 platform/libplatform_s.a(Driver_USART.o)
.debug_loc 0x0000000000001588 0x8751 platform/libplatform_s.a(nrfx_uarte.o)
.debug_loc 0x0000000000009cd9 0xbfb platform/libplatform_s.a(spu.o)
.debug_loc 0x000000000000a8d4 0x37e secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_loc 0x000000000000ac52 0x23d secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_loc 0x000000000000ae8f 0xe8 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_loc 0x000000000000af77 0x541 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_loc 0x000000000000b4b8 0x1e2 secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_loc 0x000000000000b69a 0x97 secure_fw/spm/libtfm_spm.a(main.o)
.debug_loc 0x000000000000b731 0x379 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_loc 0x000000000000baaa 0x1df secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_loc 0x000000000000bc89 0x222 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_loc 0x000000000000beab 0x1ae secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_loc 0x000000000000c059 0x24e secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_loc 0x000000000000c2a7 0x86b secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_loc 0x000000000000cb12 0x66 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_loc 0x000000000000cb78 0x15 secure_fw/spm/libtfm_spm.a(faults.o)
.debug_loc 0x000000000000cb8d 0x371 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_loc 0x000000000000cefe 0x128 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_loc 0x000000000000d026 0x2ae secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_loc 0x000000000000d2d4 0x6d0 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_loc 0x000000000000d9a4 0x1f9 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_loc 0x000000000000db9d 0x15 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_loc 0x000000000000dbb2 0xb7b secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_loc 0x000000000000e72d 0x2a6 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_loc 0x000000000000e9d3 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_loc 0x000000000000e9f8 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_loc 0x000000000000ea1d 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_loc 0x000000000000ea42 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_loc 0x000000000000ea67 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_loc 0x000000000000ea8c 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_loc 0x000000000000eab1 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_loc 0x000000000000ead6 0x92 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_loc 0x000000000000eb68 0x1e7 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_loc 0x000000000000ed4f 0x25 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_loc 0x000000000000ed74 0x46a secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_loc 0x000000000000f1de 0x105 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_loc 0x000000000000f2e3 0x37f secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_loc 0x000000000000f662 0x7642 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_loc 0x0000000000016ca4 0x814 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_loc 0x00000000000174b8 0x11fe secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_loc 0x00000000000186b6 0x2e8 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_loc 0x000000000001899e 0x2d8 platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_loc 0x0000000000018c76 0x25 platform/libplatform_s.a(nrf_exception_info.o)
.debug_loc 0x0000000000018c9b 0xa2 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_loc 0x0000000000018d3d 0x4a platform/libplatform_s.a(dummy_otp.o)
.debug_loc 0x0000000000018d87 0xcb platform/libplatform_s.a(ns_fault_service.o)
.debug_loc 0x0000000000018e52 0x25e platform/libplatform_s.a(tfm_platform_system.o)
.debug_loc 0x00000000000190b0 0x119 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_aranges 0x0000000000000000 0x1450
.debug_aranges
0x0000000000000000 0x48 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_aranges
0x0000000000000048 0x28 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_aranges
0x0000000000000070 0x20 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_aranges
0x0000000000000090 0x68 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_aranges
0x00000000000000f8 0x18 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.debug_aranges
0x0000000000000110 0x18 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.debug_aranges
0x0000000000000128 0x18 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.debug_aranges
0x0000000000000140 0x20 platform/libplatform_s.a(hw_init.o)
.debug_aranges
0x0000000000000160 0x58 platform/libplatform_s.a(system_nrf91.o)
.debug_aranges
0x00000000000001b8 0x28 platform/libplatform_s.a(exception_info.o)
.debug_aranges
0x00000000000001e0 0x38 platform/libplatform_s.a(uart_stdout.o)
.debug_aranges
0x0000000000000218 0x20 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_aranges
0x0000000000000238 0x98 platform/libplatform_s.a(Driver_USART.o)
.debug_aranges
0x00000000000002d0 0x108 platform/libplatform_s.a(nrfx_uarte.o)
.debug_aranges
0x00000000000003d8 0x28 platform/libplatform_s.a(nrfx_glue.o)
.debug_aranges
0x0000000000000400 0xb0 platform/libplatform_s.a(spu.o)
.debug_aranges
0x00000000000004b0 0x20 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_aranges
0x00000000000004d0 0x20 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_aranges
0x00000000000004f0 0x20 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_aranges
0x0000000000000510 0x50 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_aranges
0x0000000000000560 0x20 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_aranges
0x0000000000000580 0x20 secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_aranges
0x00000000000005a0 0x20 secure_fw/spm/libtfm_spm.a(main.o)
.debug_aranges
0x00000000000005c0 0x30 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_aranges
0x00000000000005f0 0x50 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_aranges
0x0000000000000640 0x30 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_aranges
0x0000000000000670 0x48 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_aranges
0x00000000000006b8 0x30 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_aranges
0x00000000000006e8 0x20 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_aranges
0x0000000000000708 0x48 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_aranges
0x0000000000000750 0x38 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_aranges
0x0000000000000788 0x28 secure_fw/spm/libtfm_spm.a(faults.o)
.debug_aranges
0x00000000000007b0 0x58 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_aranges
0x0000000000000808 0x28 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_aranges
0x0000000000000830 0x30 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_aranges
0x0000000000000860 0x70 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_aranges
0x00000000000008d0 0x30 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_aranges
0x0000000000000900 0x28 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_aranges
0x0000000000000928 0x40 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_aranges
0x0000000000000968 0x38 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_aranges
0x00000000000009a0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_aranges
0x00000000000009c0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_aranges
0x00000000000009e0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_aranges
0x0000000000000a00 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_aranges
0x0000000000000a20 0x28 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_aranges
0x0000000000000a48 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_aranges
0x0000000000000a68 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_aranges
0x0000000000000a88 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_aranges
0x0000000000000aa8 0x40 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_aranges
0x0000000000000ae8 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_aranges
0x0000000000000b08 0x58 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_aranges
0x0000000000000b60 0x58 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_aranges
0x0000000000000bb8 0x60 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_aranges
0x0000000000000c18 0x3a8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_aranges
0x0000000000000fc0 0x80 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_aranges
0x0000000000001040 0x250 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_aranges
0x0000000000001290 0x30 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_aranges
0x00000000000012c0 0x40 platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_aranges
0x0000000000001300 0x28 platform/libplatform_s.a(nrf_exception_info.o)
.debug_aranges
0x0000000000001328 0x20 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_aranges
0x0000000000001348 0x38 platform/libplatform_s.a(dummy_otp.o)
.debug_aranges
0x0000000000001380 0x28 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_aranges
0x00000000000013a8 0x30 platform/libplatform_s.a(dummy_provisioning.o)
.debug_aranges
0x00000000000013d8 0x30 platform/libplatform_s.a(ns_fault_service.o)
.debug_aranges
0x0000000000001408 0x28 platform/libplatform_s.a(tfm_platform_system.o)
.debug_aranges
0x0000000000001430 0x20 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_ranges 0x0000000000000000 0x2c20
.debug_ranges 0x0000000000000000 0x38 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_ranges 0x0000000000000038 0x98 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_ranges 0x00000000000000d0 0x10 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_ranges 0x00000000000000e0 0x58 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_ranges 0x0000000000000138 0xe8 platform/libplatform_s.a(hw_init.o)
.debug_ranges 0x0000000000000220 0xe0 platform/libplatform_s.a(system_nrf91.o)
.debug_ranges 0x0000000000000300 0x98 platform/libplatform_s.a(exception_info.o)
.debug_ranges 0x0000000000000398 0x28 platform/libplatform_s.a(uart_stdout.o)
.debug_ranges 0x00000000000003c0 0x10 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_ranges 0x00000000000003d0 0x1b0 platform/libplatform_s.a(Driver_USART.o)
.debug_ranges 0x0000000000000580 0xe80 platform/libplatform_s.a(nrfx_uarte.o)
.debug_ranges 0x0000000000001400 0x18 platform/libplatform_s.a(nrfx_glue.o)
.debug_ranges 0x0000000000001418 0x1d8 platform/libplatform_s.a(spu.o)
.debug_ranges 0x00000000000015f0 0x30 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_ranges 0x0000000000001620 0x10 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_ranges 0x0000000000001630 0x10 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_ranges 0x0000000000001640 0x190 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_ranges 0x00000000000017d0 0x10 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_ranges 0x00000000000017e0 0x28 secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_ranges 0x0000000000001808 0x40 secure_fw/spm/libtfm_spm.a(main.o)
.debug_ranges 0x0000000000001848 0x20 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_ranges 0x0000000000001868 0x40 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_ranges 0x00000000000018a8 0x40 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_ranges 0x00000000000018e8 0x68 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_ranges 0x0000000000001950 0x20 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_ranges 0x0000000000001970 0x10 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_ranges 0x0000000000001980 0x130 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_ranges 0x0000000000001ab0 0x28 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_ranges 0x0000000000001ad8 0x18 secure_fw/spm/libtfm_spm.a(faults.o)
.debug_ranges 0x0000000000001af0 0xc0 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_ranges 0x0000000000001bb0 0x18 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_ranges 0x0000000000001bc8 0x68 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_ranges 0x0000000000001c30 0x60 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_ranges 0x0000000000001c90 0x20 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_ranges 0x0000000000001cb0 0x18 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_ranges 0x0000000000001cc8 0x118 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_ranges 0x0000000000001de0 0x28 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_ranges 0x0000000000001e08 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_ranges 0x0000000000001e18 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_ranges 0x0000000000001e28 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_ranges 0x0000000000001e38 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_ranges 0x0000000000001e48 0x18 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_ranges 0x0000000000001e60 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_ranges 0x0000000000001e70 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_ranges 0x0000000000001e80 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_ranges 0x0000000000001e90 0x48 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_ranges 0x0000000000001ed8 0x10 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_ranges 0x0000000000001ee8 0x60 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_ranges 0x0000000000001f48 0x48 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_ranges 0x0000000000001f90 0x68 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_ranges 0x0000000000001ff8 0x738 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_ranges 0x0000000000002730 0xe0 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_ranges 0x0000000000002810 0x240 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_ranges 0x0000000000002a50 0x20 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_ranges 0x0000000000002a70 0x50 platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_ranges 0x0000000000002ac0 0x38 platform/libplatform_s.a(nrf_exception_info.o)
.debug_ranges 0x0000000000002af8 0x68 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_ranges 0x0000000000002b60 0x28 platform/libplatform_s.a(dummy_otp.o)
.debug_ranges 0x0000000000002b88 0x18 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_ranges 0x0000000000002ba0 0x20 platform/libplatform_s.a(dummy_provisioning.o)
.debug_ranges 0x0000000000002bc0 0x20 platform/libplatform_s.a(ns_fault_service.o)
.debug_ranges 0x0000000000002be0 0x18 platform/libplatform_s.a(tfm_platform_system.o)
.debug_ranges 0x0000000000002bf8 0x28 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_line 0x0000000000000000 0x1b8b2
.debug_line 0x0000000000000000 0x2f0 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_line 0x00000000000002f0 0x48a secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_line 0x000000000000077a 0x200 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_line 0x000000000000097a 0x1b9 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_line 0x0000000000000b33 0x43e secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
.debug_line 0x0000000000000f71 0x446 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
.debug_line 0x00000000000013b7 0x359 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
.debug_line 0x0000000000001710 0x678 platform/libplatform_s.a(hw_init.o)
.debug_line 0x0000000000001d88 0x944 platform/libplatform_s.a(system_nrf91.o)
.debug_line 0x00000000000026cc 0x5a4 platform/libplatform_s.a(exception_info.o)
.debug_line 0x0000000000002c70 0x2ce platform/libplatform_s.a(uart_stdout.o)
.debug_line 0x0000000000002f3e 0x1ad platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_line 0x00000000000030eb 0xaef platform/libplatform_s.a(Driver_USART.o)
.debug_line 0x0000000000003bda 0x4672 platform/libplatform_s.a(nrfx_uarte.o)
.debug_line 0x000000000000824c 0x251 platform/libplatform_s.a(nrfx_glue.o)
.debug_line 0x000000000000849d 0x8fa platform/libplatform_s.a(spu.o)
.debug_line 0x0000000000008d97 0x370 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_line 0x0000000000009107 0x2d1 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_line 0x00000000000093d8 0x2d4 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_line 0x00000000000096ac 0x762 secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_line 0x0000000000009e0e 0x105 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_line 0x0000000000009f13 0x36a secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_line 0x000000000000a27d 0x55b secure_fw/spm/libtfm_spm.a(main.o)
.debug_line 0x000000000000a7d8 0x61d secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_line 0x000000000000adf5 0x715 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_line 0x000000000000b50a 0x492 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_line 0x000000000000b99c 0x53b secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_line 0x000000000000bed7 0x326 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_line 0x000000000000c1fd 0x1a0 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_line 0x000000000000c39d 0xa67 secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_line 0x000000000000ce04 0x3c5 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_line 0x000000000000d1c9 0x3ad secure_fw/spm/libtfm_spm.a(faults.o)
.debug_line 0x000000000000d576 0x8e4 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_line 0x000000000000de5a 0x526 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_line 0x000000000000e380 0x46a secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_line 0x000000000000e7ea 0x98c secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_line 0x000000000000f176 0x5a7 secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_line 0x000000000000f71d 0x2ad secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_line 0x000000000000f9ca 0x821 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_line 0x00000000000101eb 0x61e secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_line 0x0000000000010809 0x312 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_line 0x0000000000010b1b 0x2fb secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_line 0x0000000000010e16 0x30f secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_line 0x0000000000011125 0x310 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_line 0x0000000000011435 0x328 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_line 0x000000000001175d 0x31a secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_line 0x0000000000011a77 0x31a secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_line 0x0000000000011d91 0x304 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_line 0x0000000000012095 0x589 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_line 0x000000000001261e 0x310 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_line 0x000000000001292e 0x747 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_line 0x0000000000013075 0x297 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_line 0x000000000001330c 0x4ae secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_line 0x00000000000137ba 0x3fbf secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_line 0x0000000000017779 0x93b secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_line 0x00000000000180b4 0xd15 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_line 0x0000000000018dc9 0x527 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_line 0x00000000000192f0 0x45d platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_line 0x000000000001974d 0x424 platform/libplatform_s.a(nrf_exception_info.o)
.debug_line 0x0000000000019b71 0x444 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_line 0x0000000000019fb5 0x2ea platform/libplatform_s.a(dummy_otp.o)
.debug_line 0x000000000001a29f 0x302 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_line 0x000000000001a5a1 0x130 platform/libplatform_s.a(dummy_provisioning.o)
.debug_line 0x000000000001a6d1 0x609 platform/libplatform_s.a(ns_fault_service.o)
.debug_line 0x000000000001acda 0x628 platform/libplatform_s.a(tfm_platform_system.o)
.debug_line 0x000000000001b302 0x5b0 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_str 0x0000000000000000 0xbf9e
.debug_str 0x0000000000000000 0x2e9 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
0x34e (size before relaxing)
.debug_str 0x00000000000002e9 0x419 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
0x602 (size before relaxing)
.debug_str 0x0000000000000702 0xa5 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
0x30d (size before relaxing)
.debug_str 0x00000000000007a7 0xc7 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
0x2e5 (size before relaxing)
.debug_str 0x000000000000086e 0x2df secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/auto_generated/load_info_tfm_crypto.o
0x553 (size before relaxing)
.debug_str 0x0000000000000b4d 0x165 secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/auto_generated/load_info_tfm_platform.o
0x565 (size before relaxing)
.debug_str 0x0000000000000cb2 0x10b secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_tz.o
0x4fb (size before relaxing)
.debug_str 0x0000000000000dbd 0x908 platform/libplatform_s.a(hw_init.o)
0xab7 (size before relaxing)
.debug_str 0x00000000000016c5 0x722 platform/libplatform_s.a(system_nrf91.o)
0xb20 (size before relaxing)
.debug_str 0x0000000000001de7 0x214 platform/libplatform_s.a(exception_info.o)
0x570 (size before relaxing)
.debug_str 0x0000000000001ffb 0x2e8 platform/libplatform_s.a(uart_stdout.o)
0x610 (size before relaxing)
.debug_str 0x00000000000022e3 0x78 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
0x27c (size before relaxing)
.debug_str 0x000000000000235b 0xdc0 platform/libplatform_s.a(Driver_USART.o)
0x18fe (size before relaxing)
.debug_str 0x000000000000311b 0x12ec platform/libplatform_s.a(nrfx_uarte.o)
0x253e (size before relaxing)
.debug_str 0x0000000000004407 0x8f platform/libplatform_s.a(nrfx_glue.o)
0x2b4 (size before relaxing)
.debug_str 0x0000000000004496 0x67c platform/libplatform_s.a(spu.o)
0xb72 (size before relaxing)
.debug_str 0x0000000000004b12 0xaa secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
0x2bb (size before relaxing)
.debug_str 0x0000000000004bbc 0x62 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
0x294 (size before relaxing)
.debug_str 0x0000000000004c1e 0x75 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
0x296 (size before relaxing)
.debug_str 0x0000000000004c93 0x1fd secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
0x657 (size before relaxing)
.debug_str 0x0000000000004e90 0x77 secure_fw/spm/libtfm_spm.a(utilities.o)
0x239 (size before relaxing)
.debug_str 0x0000000000004f07 0x160 secure_fw/spm/libtfm_spm.a(spm_log.o)
0x36c (size before relaxing)
.debug_str 0x0000000000005067 0x280 secure_fw/spm/libtfm_spm.a(main.o)
0x5c7 (size before relaxing)
.debug_str 0x00000000000052e7 0xb2 secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
0x605 (size before relaxing)
.debug_str 0x0000000000005399 0x1e8 secure_fw/spm/libtfm_spm.a(backend_sfn.o)
0x60e (size before relaxing)
.debug_str 0x0000000000005581 0x150 secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
0x3d4 (size before relaxing)
.debug_str 0x00000000000056d1 0x149 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
0x55b (size before relaxing)
.debug_str 0x000000000000581a 0x93 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
0x6b9 (size before relaxing)
.debug_str 0x00000000000058ad 0x80 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
0x258 (size before relaxing)
.debug_str 0x000000000000592d 0x78d secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
0xff2 (size before relaxing)
.debug_str 0x00000000000060ba 0x135 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
0x57a (size before relaxing)
.debug_str 0x00000000000061ef 0xbc secure_fw/spm/libtfm_spm.a(faults.o)
0x88c (size before relaxing)
.debug_str 0x00000000000062ab 0x241 secure_fw/spm/libtfm_spm.a(target_cfg.o)
0x1171 (size before relaxing)
.debug_str 0x00000000000064ec 0x14e secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
0x6bd (size before relaxing)
.debug_str 0x000000000000663a 0x12b secure_fw/spm/libtfm_spm.a(tfm_arch.o)
0x404 (size before relaxing)
.debug_str 0x0000000000006765 0x237 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
0x8a5 (size before relaxing)
.debug_str 0x000000000000699c 0x226 secure_fw/spm/libtfm_spm.a(rom_loader.o)
0x6af (size before relaxing)
.debug_str 0x0000000000006bc2 0x90 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
0x3ff (size before relaxing)
.debug_str 0x0000000000006c52 0xe89 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
0x11c5 (size before relaxing)
.debug_str 0x0000000000007adb 0x5c7 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
0x12a8 (size before relaxing)
.debug_str 0x00000000000080a2 0x70 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
0x2dc (size before relaxing)
.debug_str 0x0000000000008112 0x6e secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
0x28a (size before relaxing)
.debug_str 0x0000000000008180 0x6d secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
0x2d6 (size before relaxing)
.debug_str 0x00000000000081ed 0x6e secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
0x2d8 (size before relaxing)
.debug_str 0x000000000000825b 0x74 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
0x311 (size before relaxing)
.debug_str 0x00000000000082cf 0x78 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
0x2ec (size before relaxing)
.debug_str 0x0000000000008347 0x78 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
0x2ec (size before relaxing)
.debug_str 0x00000000000083bf 0x99 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
0x2d0 (size before relaxing)
.debug_str 0x0000000000008458 0x326 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
0x618 (size before relaxing)
.debug_str 0x000000000000877e 0x6e secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
0x2d8 (size before relaxing)
.debug_str 0x00000000000087ec 0x188 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
0x3ab (size before relaxing)
.debug_str 0x0000000000008974 0x149 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
0x34c (size before relaxing)
.debug_str 0x0000000000008abd 0x138 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
0x362 (size before relaxing)
.debug_str 0x0000000000008bf5 0x2336 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
0x2b73 (size before relaxing)
.debug_str 0x000000000000af2b 0x2b6 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
0x7e4 (size before relaxing)
.debug_str 0x000000000000b1e1 0x2f3 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
0x1559 (size before relaxing)
.debug_str 0x000000000000b4d4 0x1da secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
0x4c0 (size before relaxing)
.debug_str 0x000000000000b6ae 0x103 platform/libplatform_s.a(mpu_armv8m_drv.o)
0x568 (size before relaxing)
.debug_str 0x000000000000b7b1 0xda platform/libplatform_s.a(nrf_exception_info.o)
0x5a7 (size before relaxing)
.debug_str 0x000000000000b88b 0xd0 platform/libplatform_s.a(tfm_hal_platform.o)
0x510 (size before relaxing)
.debug_str 0x000000000000b95b 0xbd platform/libplatform_s.a(dummy_otp.o)
0x368 (size before relaxing)
.debug_str 0x000000000000ba18 0x99 platform/libplatform_s.a(tfm_hal_reset_halt.o)
0x3eb (size before relaxing)
.debug_str 0x000000000000bab1 0x66 platform/libplatform_s.a(dummy_provisioning.o)
0x33d (size before relaxing)
.debug_str 0x000000000000bb17 0x24e platform/libplatform_s.a(ns_fault_service.o)
0x60d (size before relaxing)
.debug_str 0x000000000000bd65 0x14b platform/libplatform_s.a(tfm_platform_system.o)
0x8b6 (size before relaxing)
.debug_str 0x000000000000beb0 0xee platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
0x4e8 (size before relaxing)
.debug_frame 0x0000000000000000 0x2f34
.debug_frame 0x0000000000000000 0x70 secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m.o
.debug_frame 0x0000000000000070 0x38 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup.o
.debug_frame 0x00000000000000a8 0x20 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/core/startup_nrf91.o
.debug_frame 0x00000000000000c8 0xb0 secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/common/faults.o
.debug_frame 0x0000000000000178 0x2c platform/libplatform_s.a(hw_init.o)
.debug_frame 0x00000000000001a4 0xa8 platform/libplatform_s.a(system_nrf91.o)
.debug_frame 0x000000000000024c 0x50 platform/libplatform_s.a(exception_info.o)
.debug_frame 0x000000000000029c 0x8c platform/libplatform_s.a(uart_stdout.o)
.debug_frame 0x0000000000000328 0x20 platform/libplatform_s.a(tfm_hal_spm_logdev_peripheral.o)
.debug_frame 0x0000000000000348 0x17c platform/libplatform_s.a(Driver_USART.o)
.debug_frame 0x00000000000004c4 0x39c platform/libplatform_s.a(nrfx_uarte.o)
.debug_frame 0x0000000000000860 0x30 platform/libplatform_s.a(nrfx_glue.o)
.debug_frame 0x0000000000000890 0x150 platform/libplatform_s.a(spu.o)
.debug_frame 0x00000000000009e0 0x3c secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memmove.o)
.debug_frame 0x0000000000000a1c 0x2c secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memcpy.o)
.debug_frame 0x0000000000000a48 0x30 secure_fw/partitions/lib/runtime/libtfm_sprt.a(crt_memset.o)
.debug_frame 0x0000000000000a78 0x10c secure_fw/partitions/lib/runtime/libtfm_sprt.a(psa_interface_sfn.o)
.debug_frame 0x0000000000000b84 0x20 secure_fw/spm/libtfm_spm.a(utilities.o)
.debug_frame 0x0000000000000ba4 0x34 secure_fw/spm/libtfm_spm.a(spm_log.o)
.debug_frame 0x0000000000000bd8 0x28 secure_fw/spm/libtfm_spm.a(main.o)
.debug_frame 0x0000000000000c00 0x6c secure_fw/spm/libtfm_spm.a(psa_read_write_skip_api.o)
.debug_frame 0x0000000000000c6c 0xac secure_fw/spm/libtfm_spm.a(backend_sfn.o)
.debug_frame 0x0000000000000d18 0x4c secure_fw/spm/libtfm_spm.a(tfm_svcalls.o)
.debug_frame 0x0000000000000d64 0x70 secure_fw/spm/libtfm_spm.a(spm_local_connection.o)
.debug_frame 0x0000000000000dd4 0x40 secure_fw/spm/libtfm_spm.a(tfm_arch_v8m_main.o)
.debug_frame 0x0000000000000e14 0x20 secure_fw/spm/libtfm_spm.a(ns_agent_tz_v80m.o)
.debug_frame 0x0000000000000e34 0xac secure_fw/spm/libtfm_spm.a(tfm_hal_isolation.o)
.debug_frame 0x0000000000000ee0 0x58 secure_fw/spm/libtfm_spm.a(tfm_hal_platform_common.o)
.debug_frame 0x0000000000000f38 0x3c secure_fw/spm/libtfm_spm.a(faults.o)
.debug_frame 0x0000000000000f74 0xb0 secure_fw/spm/libtfm_spm.a(target_cfg.o)
.debug_frame 0x0000000000001024 0x38 secure_fw/spm/libtfm_spm.a(tfm_boot_data.o)
.debug_frame 0x000000000000105c 0x54 secure_fw/spm/libtfm_spm.a(tfm_arch.o)
.debug_frame 0x00000000000010b0 0x134 secure_fw/spm/libtfm_spm.a(spm_ipc.o)
.debug_frame 0x00000000000011e4 0x6c secure_fw/spm/libtfm_spm.a(rom_loader.o)
.debug_frame 0x0000000000001250 0x38 secure_fw/spm/libtfm_spm.a(tfm_spm_ns_ctx.o)
.debug_frame 0x0000000000001288 0xac secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_init.o)
.debug_frame 0x0000000000001334 0x8c secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_alloc.o)
.debug_frame 0x00000000000013c0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_cipher.o)
.debug_frame 0x00000000000013e0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_hash.o)
.debug_frame 0x0000000000001400 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_mac.o)
.debug_frame 0x0000000000001420 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_aead.o)
.debug_frame 0x0000000000001440 0x30 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_asymmetric.o)
.debug_frame 0x0000000000001470 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_derivation.o)
.debug_frame 0x0000000000001490 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_key_management.o)
.debug_frame 0x00000000000014b0 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_rng.o)
.debug_frame 0x00000000000014d0 0x94 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_library.o)
.debug_frame 0x0000000000001564 0x20 secure_fw/partitions/crypto/libtfm_psa_rot_partition_crypto.a(crypto_pake.o)
.debug_frame 0x0000000000001584 0xc8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(memory_buffer_alloc.o)
.debug_frame 0x000000000000164c 0x90 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform.o)
.debug_frame 0x00000000000016dc 0xf8 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(platform_util.o)
.debug_frame 0x00000000000017d4 0xda4 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto.o)
.debug_frame 0x0000000000002578 0x178 secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_slot_management.o)
.debug_frame 0x00000000000026f0 0x4ec secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/libcrypto_service_mbedcrypto.a(psa_crypto_driver_wrappers.o)
.debug_frame 0x0000000000002bdc 0x60 secure_fw/partitions/platform/libtfm_psa_rot_partition_platform.a(platform_sp.o)
.debug_frame 0x0000000000002c3c 0x78 platform/libplatform_s.a(mpu_armv8m_drv.o)
.debug_frame 0x0000000000002cb4 0x3c platform/libplatform_s.a(nrf_exception_info.o)
.debug_frame 0x0000000000002cf0 0x28 platform/libplatform_s.a(tfm_hal_platform.o)
.debug_frame 0x0000000000002d18 0x50 platform/libplatform_s.a(dummy_otp.o)
.debug_frame 0x0000000000002d68 0x40 platform/libplatform_s.a(tfm_hal_reset_halt.o)
.debug_frame 0x0000000000002da8 0x40 platform/libplatform_s.a(dummy_provisioning.o)
.debug_frame 0x0000000000002de8 0x58 platform/libplatform_s.a(ns_fault_service.o)
.debug_frame 0x0000000000002e40 0x48 platform/libplatform_s.a(tfm_platform_system.o)
.debug_frame 0x0000000000002e88 0x30 platform/libplatform_s.a(tfm_platform_hal_ioctl.o)
.debug_frame 0x0000000000002eb8 0x28 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-exit.o)
.debug_frame 0x0000000000002ee0 0x2c /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/lib/thumb/v8-m.main/nofp/libc_nano.a(lib_a-init.o)
.debug_frame 0x0000000000002f0c 0x28 /home/mike/ncs/toolchains/e9dba88316/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp/libgcc.a(cmse.o)
|