-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathlicense.txt
executable file
·7207 lines (6478 loc) · 412 KB
/
license.txt
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
Copyright License Summary
POSSIBLE NOTICE(S): [Boost-1.0] [MIT]
COPYRIGHT TEXT:
---------------
All rights reserved. Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions: The
above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software. Use of the Software is limited
solely to applications: (a) running on a Xilinx device, or (b) that interact
with a Xilinx device through a bus or interconnect. THE SOFTWARE IS PROVIDED "AS
IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL XILINX BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. Except as contained in this notice, the name of the Xilinx shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Xilinx
FILES:
lib/bsp/standalone/data/standalone.mld
lib/bsp/standalone/data/standalone.tcl
lib/bsp/standalone/src/arm/common/gcc/_exit.c
lib/bsp/standalone/src/arm/common/gcc/_open.c
lib/bsp/standalone/src/arm/common/gcc/_sbrk.c
lib/bsp/standalone/src/arm/common/gcc/abort.c
lib/bsp/standalone/src/arm/common/gcc/close.c
lib/bsp/standalone/src/arm/common/gcc/errno.c
lib/bsp/standalone/src/arm/common/gcc/fcntl.c
lib/bsp/standalone/src/arm/common/gcc/fstat.c
lib/bsp/standalone/src/arm/common/gcc/getpid.c
lib/bsp/standalone/src/arm/common/gcc/isatty.c
lib/bsp/standalone/src/arm/common/gcc/kill.c
lib/bsp/standalone/src/arm/common/gcc/lseek.c
lib/bsp/standalone/src/arm/common/gcc/open.c
lib/bsp/standalone/src/arm/common/gcc/read.c
lib/bsp/standalone/src/arm/common/gcc/sbrk.c
lib/bsp/standalone/src/arm/common/gcc/unlink.c
lib/bsp/standalone/src/arm/common/gcc/write.c
lib/bsp/standalone/src/arm/common/gcc/xpseudo_asm_gcc.h
lib/bsp/standalone/src/arm/common/iccarm/abort.c
lib/bsp/standalone/src/arm/common/iccarm/clock.c
lib/bsp/standalone/src/arm/common/iccarm/close.c
lib/bsp/standalone/src/arm/common/iccarm/exit.c
lib/bsp/standalone/src/arm/common/iccarm/low_level_init.c
lib/bsp/standalone/src/arm/common/iccarm/lseek.c
lib/bsp/standalone/src/arm/common/iccarm/open.c
lib/bsp/standalone/src/arm/common/iccarm/read.c
lib/bsp/standalone/src/arm/common/iccarm/remove.c
lib/bsp/standalone/src/arm/common/iccarm/write.c
lib/bsp/standalone/src/arm/common/iccarm/xpseudo_asm_iccarm.c
lib/bsp/standalone/src/arm/common/iccarm/xpseudo_asm_iccarm.h
lib/bsp/standalone/src/arm/common/vectors.c
lib/bsp/standalone/src/arm/common/vectors.h
lib/bsp/standalone/src/arm/common/xil_exception.c
lib/bsp/standalone/src/arm/common/xil_exception.h
lib/bsp/standalone/src/arm/cortexa53/32bit/gcc/Makefile
lib/bsp/standalone/src/arm/cortexa53/32bit/sleep.c
lib/bsp/standalone/src/arm/cortexa53/32bit/uart.c
lib/bsp/standalone/src/arm/cortexa53/32bit/usleep.c
lib/bsp/standalone/src/arm/cortexa53/32bit/xil_cache.c
lib/bsp/standalone/src/arm/cortexa53/32bit/xil_cache.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xil_cache_l.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xil_mmu.c
lib/bsp/standalone/src/arm/cortexa53/32bit/xil_mmu.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xparameters_ps.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xpseudo_asm.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xreg_cortexa53.h
lib/bsp/standalone/src/arm/cortexa53/32bit/xtime_l.c
lib/bsp/standalone/src/arm/cortexa53/32bit/xtime_l.h
lib/bsp/standalone/src/arm/cortexa53/64bit/gcc/Makefile
lib/bsp/standalone/src/arm/cortexa53/64bit/gcc/initialise_monitor_handles.c
lib/bsp/standalone/src/arm/cortexa53/64bit/sleep.c
lib/bsp/standalone/src/arm/cortexa53/64bit/uart.c
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_cache.c
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_cache.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_errata.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_mmu.c
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_mmu.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_smc.c
lib/bsp/standalone/src/arm/cortexa53/64bit/xil_smc.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xparameters_ps.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xpseudo_asm.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xreg_cortexa53.h
lib/bsp/standalone/src/arm/cortexa53/64bit/xtime_l.c
lib/bsp/standalone/src/arm/cortexa53/64bit/xtime_l.h
lib/bsp/standalone/src/arm/cortexa9/armcc/Makefile
lib/bsp/standalone/src/arm/cortexa9/armcc/xpseudo_asm_rvct.c
lib/bsp/standalone/src/arm/cortexa9/armcc/xpseudo_asm_rvct.h
lib/bsp/standalone/src/arm/cortexa9/gcc/Makefile
lib/bsp/standalone/src/arm/cortexa9/iccarm/Makefile
lib/bsp/standalone/src/arm/cortexa9/sleep.c
lib/bsp/standalone/src/arm/cortexa9/smc.h
lib/bsp/standalone/src/arm/cortexa9/usleep.c
lib/bsp/standalone/src/arm/cortexa9/xil_cache.c
lib/bsp/standalone/src/arm/cortexa9/xil_cache.h
lib/bsp/standalone/src/arm/cortexa9/xil_cache_l.h
lib/bsp/standalone/src/arm/cortexa9/xil_errata.h
lib/bsp/standalone/src/arm/cortexa9/xil_misc_psreset_api.c
lib/bsp/standalone/src/arm/cortexa9/xil_misc_psreset_api.h
lib/bsp/standalone/src/arm/cortexa9/xil_mmu.c
lib/bsp/standalone/src/arm/cortexa9/xil_mmu.h
lib/bsp/standalone/src/arm/cortexa9/xl2cc.h
lib/bsp/standalone/src/arm/cortexa9/xl2cc_counter.c
lib/bsp/standalone/src/arm/cortexa9/xl2cc_counter.h
lib/bsp/standalone/src/arm/cortexa9/xparameters_ps.h
lib/bsp/standalone/src/arm/cortexa9/xpm_counter.c
lib/bsp/standalone/src/arm/cortexa9/xpm_counter.h
lib/bsp/standalone/src/arm/cortexa9/xpseudo_asm.h
lib/bsp/standalone/src/arm/cortexa9/xreg_cortexa9.h
lib/bsp/standalone/src/arm/cortexa9/xtime_l.c
lib/bsp/standalone/src/arm/cortexa9/xtime_l.h
lib/bsp/standalone/src/arm/cortexr5/gcc/Makefile
lib/bsp/standalone/src/arm/cortexr5/iccarm/Makefile
lib/bsp/standalone/src/arm/cortexr5/mpu.c
lib/bsp/standalone/src/arm/cortexr5/sleep.c
lib/bsp/standalone/src/arm/cortexr5/uart.c
lib/bsp/standalone/src/arm/cortexr5/usleep.c
lib/bsp/standalone/src/arm/cortexr5/xil_cache.c
lib/bsp/standalone/src/arm/cortexr5/xil_cache.h
lib/bsp/standalone/src/arm/cortexr5/xil_mpu.c
lib/bsp/standalone/src/arm/cortexr5/xil_mpu.h
lib/bsp/standalone/src/arm/cortexr5/xparameters_ps.h
lib/bsp/standalone/src/arm/cortexr5/xpm_counter.c
lib/bsp/standalone/src/arm/cortexr5/xpm_counter.h
lib/bsp/standalone/src/arm/cortexr5/xpseudo_asm.h
lib/bsp/standalone/src/arm/cortexr5/xreg_cortexr5.h
lib/bsp/standalone/src/arm/cortexr5/xtime_l.c
lib/bsp/standalone/src/arm/cortexr5/xtime_l.h
lib/bsp/standalone/src/common/sleep.h
lib/bsp/standalone/src/common/xbasic_types.h
lib/bsp/standalone/src/common/xenv.h
lib/bsp/standalone/src/common/xenv_standalone.h
lib/bsp/standalone/src/common/xil_assert.c
lib/bsp/standalone/src/common/xil_assert.h
lib/bsp/standalone/src/common/xil_cache_vxworks.h
lib/bsp/standalone/src/common/xil_hal.h
lib/bsp/standalone/src/common/xil_io.c
lib/bsp/standalone/src/common/xil_io.h
lib/bsp/standalone/src/common/xil_macroback.h
lib/bsp/standalone/src/common/xil_mem.c
lib/bsp/standalone/src/common/xil_mem.h
lib/bsp/standalone/src/common/xil_testcache.c
lib/bsp/standalone/src/common/xil_testcache.h
lib/bsp/standalone/src/common/xil_testio.c
lib/bsp/standalone/src/common/xil_testio.h
lib/bsp/standalone/src/common/xil_testmem.c
lib/bsp/standalone/src/common/xil_testmem.h
lib/bsp/standalone/src/common/xil_types.h
lib/bsp/standalone/src/common/xplatform_info.c
lib/bsp/standalone/src/common/xplatform_info.h
lib/bsp/standalone/src/common/xstatus.h
lib/bsp/standalone/src/microblaze/Makefile
lib/bsp/standalone/src/microblaze/_exit.c
lib/bsp/standalone/src/microblaze/mb_interface.h
lib/bsp/standalone/src/microblaze/microblaze_exception_handler.c
lib/bsp/standalone/src/microblaze/microblaze_exceptions_g.h
lib/bsp/standalone/src/microblaze/microblaze_exceptions_i.h
lib/bsp/standalone/src/microblaze/microblaze_interrupt_handler.c
lib/bsp/standalone/src/microblaze/microblaze_interrupts_g.c
lib/bsp/standalone/src/microblaze/microblaze_interrupts_i.h
lib/bsp/standalone/src/microblaze/microblaze_sleep.c
lib/bsp/standalone/src/microblaze/microblaze_sleep.h
lib/bsp/standalone/src/microblaze/pvr.c
lib/bsp/standalone/src/microblaze/pvr.h
lib/bsp/standalone/src/microblaze/xil_cache.c
lib/bsp/standalone/src/microblaze/xil_cache.h
lib/bsp/standalone/src/microblaze/xil_exception.c
lib/bsp/standalone/src/microblaze/xil_exception.h
lib/bsp/standalone/src/microblaze/xil_misc_psreset_api.c
lib/bsp/standalone/src/microblaze/xil_misc_psreset_api.h
lib/bsp/standalone/src/profile/Makefile
lib/bsp/standalone/src/profile/_profile_clean.c
lib/bsp/standalone/src/profile/_profile_init.c
lib/bsp/standalone/src/profile/_profile_timer_hw.c
lib/bsp/standalone/src/profile/_profile_timer_hw.h
lib/bsp/standalone/src/profile/mblaze_nt_types.h
lib/bsp/standalone/src/profile/profile.h
lib/bsp/standalone/src/profile/profile_cg.c
lib/bsp/standalone/src/profile/profile_config.h
lib/bsp/standalone/src/profile/profile_hist.c
lib/bsp/xilkernel/data/xilkernel.mld
lib/bsp/xilkernel/data/xilkernel.tcl
lib/bsp/xilkernel/src/include/arch/microblaze/arch.h
lib/bsp/xilkernel/src/include/arch/ppc/arch.h
lib/bsp/xilkernel/src/include/config/config_cparam.h
lib/bsp/xilkernel/src/include/config/config_init.h
lib/bsp/xilkernel/src/include/config/config_param.h
lib/bsp/xilkernel/src/include/os_config.h
lib/bsp/xilkernel/src/include/semaphore.h
lib/bsp/xilkernel/src/include/sys/arch.h
lib/bsp/xilkernel/src/include/sys/bufmalloc.h
lib/bsp/xilkernel/src/include/sys/decls.h
lib/bsp/xilkernel/src/include/sys/entry.h
lib/bsp/xilkernel/src/include/sys/init.h
lib/bsp/xilkernel/src/include/sys/ipc.h
lib/bsp/xilkernel/src/include/sys/kmsg.h
lib/bsp/xilkernel/src/include/sys/kpthread.h
lib/bsp/xilkernel/src/include/sys/ksched.h
lib/bsp/xilkernel/src/include/sys/ksemaphore.h
lib/bsp/xilkernel/src/include/sys/kshm.h
lib/bsp/xilkernel/src/include/sys/ktypes.h
lib/bsp/xilkernel/src/include/sys/mem.h
lib/bsp/xilkernel/src/include/sys/mpu.h
lib/bsp/xilkernel/src/include/sys/msg.h
lib/bsp/xilkernel/src/include/sys/process.h
lib/bsp/xilkernel/src/include/sys/queue.h
lib/bsp/xilkernel/src/include/sys/shm.h
lib/bsp/xilkernel/src/include/sys/stats.h
lib/bsp/xilkernel/src/include/sys/syscall.h
lib/bsp/xilkernel/src/include/sys/timer.h
lib/bsp/xilkernel/src/include/sys/xtrace.h
lib/bsp/xilkernel/src/include/xmk.h
lib/bsp/xilkernel/src/src/arch/microblaze/debugmon.c
lib/bsp/xilkernel/src/src/arch/microblaze/mb-hw.c
lib/bsp/xilkernel/src/src/arch/microblaze/mpu.c
lib/bsp/xilkernel/src/src/arch/microblaze/timer_intr_handler.c
lib/bsp/xilkernel/src/src/arch/ppc/debugmon.c
lib/bsp/xilkernel/src/src/arch/ppc/ppc-hw.c
lib/bsp/xilkernel/src/src/arch/ppc/timer_intr_handler.c
lib/bsp/xilkernel/src/src/ipc/msg.c
lib/bsp/xilkernel/src/src/ipc/mutex.c
lib/bsp/xilkernel/src/src/ipc/semaphore.c
lib/bsp/xilkernel/src/src/ipc/shm.c
lib/bsp/xilkernel/src/src/sys/alloc.c
lib/bsp/xilkernel/src/src/sys/bufmalloc.c
lib/bsp/xilkernel/src/src/sys/elf.c
lib/bsp/xilkernel/src/src/sys/init.c
lib/bsp/xilkernel/src/src/sys/intr.c
lib/bsp/xilkernel/src/src/sys/mem.c
lib/bsp/xilkernel/src/src/sys/process.c
lib/bsp/xilkernel/src/src/sys/pthread.c
lib/bsp/xilkernel/src/src/sys/queue.c
lib/bsp/xilkernel/src/src/sys/sched.c
lib/bsp/xilkernel/src/src/sys/timer.c
lib/bsp/xilkernel/src/src/sys/xilkernel_main.c
lib/bsp/xilkernel/src/src/sys/xtrace.c
lib/bsp/xilkernel/src/syscall/libintr.c
lib/bsp/xilkernel/src/syscall/libmem.c
lib/bsp/xilkernel/src/syscall/libmsgq.c
lib/bsp/xilkernel/src/syscall/libprocess.c
lib/bsp/xilkernel/src/syscall/libpthread.c
lib/bsp/xilkernel/src/syscall/libsemaphore.c
lib/bsp/xilkernel/src/syscall/libshm.c
lib/bsp/xilkernel/src/syscall/libtimer.c
lib/sw_apps/ddr_self_refresh/data/ddr_self_refresh.tcl
lib/sw_apps/ddr_self_refresh/src/platform.c
lib/sw_apps/ddr_self_refresh/src/platform.h
lib/sw_apps/freertos_hello_world/data/freertos_hello_world.tcl
lib/sw_apps/freertos_lwip_echo_server/src/echo.c
lib/sw_apps/freertos_lwip_echo_server/src/iic_phyreset.c
lib/sw_apps/freertos_lwip_echo_server/src/main.c
lib/sw_apps/libmetal_echo_demo/data/libmetal_echo_demo.mss
lib/sw_apps/libmetal_echo_demo/data/libmetal_echo_demo.tcl
lib/sw_apps/libmetal_echo_demo/src/sys_init.h
lib/sw_apps/libmetal_echo_demo/src/system/freertos/machine/zynqmp_r5/sys_init.c
lib/sw_apps/libmetal_echo_demo/src/system/generic/machine/zynqmp_r5/sys_init.c
lib/sw_apps/lwip_echo_server/src/echo.c
lib/sw_apps/lwip_echo_server/src/i2c_access.c
lib/sw_apps/lwip_echo_server/src/iic_phyreset.c
lib/sw_apps/lwip_echo_server/src/main.c
lib/sw_apps/lwip_echo_server/src/platform.c
lib/sw_apps/lwip_echo_server/src/platform.h
lib/sw_apps/lwip_echo_server/src/platform_mb.c
lib/sw_apps/lwip_echo_server/src/platform_ppc.c
lib/sw_apps/lwip_echo_server/src/platform_zynq.c
lib/sw_apps/lwip_echo_server/src/sfp.c
lib/sw_apps/lwip_echo_server/src/si5324.c
lib/sw_apps/mba_fs_boot/data/mba_fs_boot.mss
lib/sw_apps/mba_fs_boot/data/mba_fs_boot.tcl
lib/sw_apps/openamp_echo_test/data/openamp_echo_test.mss
lib/sw_apps/openamp_echo_test/data/openamp_echo_test.tcl
lib/sw_apps/openamp_matrix_multiply/data/openamp_matrix_multiply.mss
lib/sw_apps/openamp_matrix_multiply/data/openamp_matrix_multiply.tcl
lib/sw_apps/openamp_rpc_demo/data/openamp_rpc_demo.mss
lib/sw_apps/openamp_rpc_demo/data/openamp_rpc_demo.tcl
lib/sw_apps/rsa_auth_app/src/rsa_auth_app.c
lib/sw_apps/rsa_auth_app/src/rsa_auth_app.h
lib/sw_apps/xilkernel_thread_demo/src/main.c
lib/sw_apps/xilkernel_thread_demo/src/platform.c
lib/sw_apps/xilkernel_thread_demo/src/platform.h
lib/sw_apps/zynq_fsbl/misc/microzed/ps7_init.c
lib/sw_apps/zynq_fsbl/misc/microzed/ps7_init.h
lib/sw_apps/zynq_fsbl/misc/zc702/ps7_init.c
lib/sw_apps/zynq_fsbl/misc/zc702/ps7_init.h
lib/sw_apps/zynq_fsbl/misc/zc706/ps7_init.c
lib/sw_apps/zynq_fsbl/misc/zc706/ps7_init.h
lib/sw_apps/zynq_fsbl/misc/zed/ps7_init.c
lib/sw_apps/zynq_fsbl/misc/zed/ps7_init.h
lib/sw_apps/zynq_fsbl/src/Makefile
lib/sw_apps/zynq_fsbl/src/fsbl.h
lib/sw_apps/zynq_fsbl/src/fsbl_debug.h
lib/sw_apps/zynq_fsbl/src/fsbl_hooks.c
lib/sw_apps/zynq_fsbl/src/fsbl_hooks.h
lib/sw_apps/zynq_fsbl/src/image_mover.c
lib/sw_apps/zynq_fsbl/src/image_mover.h
lib/sw_apps/zynq_fsbl/src/main.c
lib/sw_apps/zynq_fsbl/src/md5.h
lib/sw_apps/zynq_fsbl/src/nand.c
lib/sw_apps/zynq_fsbl/src/nand.h
lib/sw_apps/zynq_fsbl/src/nor.c
lib/sw_apps/zynq_fsbl/src/nor.h
lib/sw_apps/zynq_fsbl/src/pcap.c
lib/sw_apps/zynq_fsbl/src/pcap.h
lib/sw_apps/zynq_fsbl/src/ps7_init.c
lib/sw_apps/zynq_fsbl/src/ps7_init.h
lib/sw_apps/zynq_fsbl/src/qspi.c
lib/sw_apps/zynq_fsbl/src/qspi.h
lib/sw_apps/zynq_fsbl/src/rsa.c
lib/sw_apps/zynq_fsbl/src/rsa.h
lib/sw_apps/zynq_fsbl/src/sd.c
lib/sw_apps/zynq_fsbl/src/sd.h
lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.mss
lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl
lib/sw_apps/zynqmp_fsbl/src/Makefile
lib/sw_apps/zynqmp_fsbl/src/xfsbl_authentication.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_authentication.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_board.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_board.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_bs.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_bs.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_config.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_csu_dma.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_csu_dma.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_debug.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_dfu_util.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_dfu_util.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_error.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_handoff.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_hooks.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_hooks.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_hw.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_image_header.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_image_header.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_initialization.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_main.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_main.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_misc.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_misc.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_misc_drivers.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_misc_drivers.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_nand.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_partition_load.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_plpartition_valid.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_plpartition_valid.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_qspi.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_qspi.h
lib/sw_apps/zynqmp_fsbl/src/xfsbl_rsa_sha.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_sd.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_usb.c
lib/sw_apps/zynqmp_fsbl/src/xfsbl_usb.h
lib/sw_apps/zynqmp_pmufw/data/zynqmp_pmufw.mss
lib/sw_apps/zynqmp_pmufw/data/zynqmp_pmufw.tcl
lib/sw_apps/zynqmp_pmufw/src/apu.h
lib/sw_apps/zynqmp_pmufw/src/crf_apb.h
lib/sw_apps/zynqmp_pmufw/src/crl_apb.h
lib/sw_apps/zynqmp_pmufw/src/csu.h
lib/sw_apps/zynqmp_pmufw/src/efuse.h
lib/sw_apps/zynqmp_pmufw/src/idle_hooks.c
lib/sw_apps/zynqmp_pmufw/src/ipi.h
lib/sw_apps/zynqmp_pmufw/src/lpd_slcr.h
lib/sw_apps/zynqmp_pmufw/src/pm_api.c
lib/sw_apps/zynqmp_pmufw/src/pm_api.h
lib/sw_apps/zynqmp_pmufw/src/pm_binding.c
lib/sw_apps/zynqmp_pmufw/src/pm_binding.h
lib/sw_apps/zynqmp_pmufw/src/pm_callbacks.c
lib/sw_apps/zynqmp_pmufw/src/pm_callbacks.h
lib/sw_apps/zynqmp_pmufw/src/pm_clock.c
lib/sw_apps/zynqmp_pmufw/src/pm_clock.h
lib/sw_apps/zynqmp_pmufw/src/pm_common.c
lib/sw_apps/zynqmp_pmufw/src/pm_common.h
lib/sw_apps/zynqmp_pmufw/src/pm_config.c
lib/sw_apps/zynqmp_pmufw/src/pm_config.h
lib/sw_apps/zynqmp_pmufw/src/pm_core.c
lib/sw_apps/zynqmp_pmufw/src/pm_core.h
lib/sw_apps/zynqmp_pmufw/src/pm_ddr.c
lib/sw_apps/zynqmp_pmufw/src/pm_ddr.h
lib/sw_apps/zynqmp_pmufw/src/pm_defs.h
lib/sw_apps/zynqmp_pmufw/src/pm_extern.c
lib/sw_apps/zynqmp_pmufw/src/pm_extern.h
lib/sw_apps/zynqmp_pmufw/src/pm_gic_proxy.c
lib/sw_apps/zynqmp_pmufw/src/pm_gic_proxy.h
lib/sw_apps/zynqmp_pmufw/src/pm_gpp.c
lib/sw_apps/zynqmp_pmufw/src/pm_gpp.h
lib/sw_apps/zynqmp_pmufw/src/pm_master.c
lib/sw_apps/zynqmp_pmufw/src/pm_master.h
lib/sw_apps/zynqmp_pmufw/src/pm_mmio_access.c
lib/sw_apps/zynqmp_pmufw/src/pm_mmio_access.h
lib/sw_apps/zynqmp_pmufw/src/pm_node.c
lib/sw_apps/zynqmp_pmufw/src/pm_node.h
lib/sw_apps/zynqmp_pmufw/src/pm_node_idle.h
lib/sw_apps/zynqmp_pmufw/src/pm_node_reset.c
lib/sw_apps/zynqmp_pmufw/src/pm_node_reset.h
lib/sw_apps/zynqmp_pmufw/src/pm_notifier.c
lib/sw_apps/zynqmp_pmufw/src/pm_notifier.h
lib/sw_apps/zynqmp_pmufw/src/pm_periph.c
lib/sw_apps/zynqmp_pmufw/src/pm_periph.h
lib/sw_apps/zynqmp_pmufw/src/pm_power.c
lib/sw_apps/zynqmp_pmufw/src/pm_power.h
lib/sw_apps/zynqmp_pmufw/src/pm_proc.c
lib/sw_apps/zynqmp_pmufw/src/pm_proc.h
lib/sw_apps/zynqmp_pmufw/src/pm_requirement.c
lib/sw_apps/zynqmp_pmufw/src/pm_requirement.h
lib/sw_apps/zynqmp_pmufw/src/pm_reset.c
lib/sw_apps/zynqmp_pmufw/src/pm_reset.h
lib/sw_apps/zynqmp_pmufw/src/pm_slave.c
lib/sw_apps/zynqmp_pmufw/src/pm_slave.h
lib/sw_apps/zynqmp_pmufw/src/pm_sram.c
lib/sw_apps/zynqmp_pmufw/src/pm_sram.h
lib/sw_apps/zynqmp_pmufw/src/pm_system.c
lib/sw_apps/zynqmp_pmufw/src/pm_system.h
lib/sw_apps/zynqmp_pmufw/src/pm_usb.c
lib/sw_apps/zynqmp_pmufw/src/pm_usb.h
lib/sw_apps/zynqmp_pmufw/src/pmu_global.h
lib/sw_apps/zynqmp_pmufw/src/pmu_iomodule.h
lib/sw_apps/zynqmp_pmufw/src/pmu_lmb_bram.h
lib/sw_apps/zynqmp_pmufw/src/pmu_local.h
lib/sw_apps/zynqmp_pmufw/src/rpu.h
lib/sw_apps/zynqmp_pmufw/src/rtc.h
lib/sw_apps/zynqmp_pmufw/src/uart0.h
lib/sw_apps/zynqmp_pmufw/src/uart1.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_aib.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_aib.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_codes.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_config.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_core.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_core.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_crc.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_crc.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_debug.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_default.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_error_manager.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_error_manager.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_events.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_events.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_ipi_manager.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_ipi_manager.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_main.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_em.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_em.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_pm.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_pm.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_rtc.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_rtc.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_sched.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_sched.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_stl.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_stl.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_wdt.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_wdt.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_module.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_module.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_platform.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_platform.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_resets.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_resets.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_restart.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_restart.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_rom_interface.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_user_startup.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_user_startup.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_util.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_util.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_xpu.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_xpu.h
lib/sw_services/xilffs/data/xilffs.mld
lib/sw_services/xilffs/data/xilffs.tcl
lib/sw_services/xilffs/examples/xilffs_polled_example.c
lib/sw_services/xilffs/src/Makefile
lib/sw_services/xilffs/src/diskio.c
lib/sw_services/xilflash/data/xilflash.mld
lib/sw_services/xilflash/data/xilflash.tcl
lib/sw_services/xilflash/examples/xilflash_devicecontrol_example.c
lib/sw_services/xilflash/examples/xilflash_platform_flash_example.c
lib/sw_services/xilflash/examples/xilflash_protection_example.c
lib/sw_services/xilflash/examples/xilflash_readwrite_example.c
lib/sw_services/xilflash/src/Makefile
lib/sw_services/xilflash/src/include/xilflash.h
lib/sw_services/xilflash/src/include/xilflash_amd.h
lib/sw_services/xilflash/src/include/xilflash_cfi.h
lib/sw_services/xilflash/src/include/xilflash_intel.h
lib/sw_services/xilflash/src/include/xilflash_properties.h
lib/sw_services/xilflash/src/xilflash.c
lib/sw_services/xilflash/src/xilflash_amd.c
lib/sw_services/xilflash/src/xilflash_cfi.c
lib/sw_services/xilflash/src/xilflash_intel.c
lib/sw_services/xilfpga/data/xilfpga.mld
lib/sw_services/xilfpga/data/xilfpga.tcl
lib/sw_services/xilfpga/examples/xfpga_load_bitstream_example.c
lib/sw_services/xilfpga/examples/xfpga_load_encryped_bitstream_example.c
lib/sw_services/xilfpga/examples/xfpga_reg_readback_example.c
lib/sw_services/xilfpga/src/Makefile
lib/sw_services/xilfpga/src/xilfpga_pcap.c
lib/sw_services/xilfpga/src/xilfpga_pcap.h
lib/sw_services/xilisf/data/xilisf.mld
lib/sw_services/xilisf/data/xilisf.tcl
lib/sw_services/xilisf/examples/xilisf_atmel_buffer_rdwr_example.c
lib/sw_services/xilisf/examples/xilisf_atmel_rdwr_polled_example.c
lib/sw_services/xilisf/examples/xilisf_atmel_read_write_example.c
lib/sw_services/xilisf/examples/xilisf_atmel_spr_example.c
lib/sw_services/xilisf/examples/xilisf_intel_otp_rdwr_example.c
lib/sw_services/xilisf/examples/xilisf_intel_rdwr_polled_example.c
lib/sw_services/xilisf/examples/xilisf_intel_read_write_example.c
lib/sw_services/xilisf/examples/xilisf_intel_spr_example.c
lib/sw_services/xilisf/examples/xilisf_qspips_stm_intr_example.c
lib/sw_services/xilisf/examples/xilisf_qspips_stm_polled_example.c
lib/sw_services/xilisf/examples/xilisf_qspipsu_stm_intr_example.c
lib/sw_services/xilisf/examples/xilisf_qspipsu_stm_polled_example.c
lib/sw_services/xilisf/examples/xilisf_spips_sst_intr_example.c
lib/sw_services/xilisf/examples/xilisf_spips_sst_polled_example.c
lib/sw_services/xilisf/examples/xilisf_stm_quad_flash_example.c
lib/sw_services/xilisf/examples/xilisf_stm_rdwr_polled_example.c
lib/sw_services/xilisf/examples/xilisf_stm_read_write_example.c
lib/sw_services/xilisf/examples/xilisf_stm_spr_example.c
lib/sw_services/xilisf/examples/xilisf_winbond_quad_flash_example.c
lib/sw_services/xilisf/examples/xilisf_winbond_rdwr_polled_example.c
lib/sw_services/xilisf/examples/xilisf_winbond_read_write_example.c
lib/sw_services/xilisf/examples/xilisf_winbond_spr_example.c
lib/sw_services/xilisf/src/Makefile
lib/sw_services/xilisf/src/include/xilisf.h
lib/sw_services/xilisf/src/include/xilisf_atmel.h
lib/sw_services/xilisf/src/include/xilisf_intelstm.h
lib/sw_services/xilisf/src/xilisf.c
lib/sw_services/xilisf/src/xilisf_erase.c
lib/sw_services/xilisf/src/xilisf_read.c
lib/sw_services/xilisf/src/xilisf_spr.c
lib/sw_services/xilisf/src/xilisf_write.c
lib/sw_services/xilmfs/data/xilmfs.mld
lib/sw_services/xilmfs/data/xilmfs.tcl
lib/sw_services/xilmfs/src/Makefile
lib/sw_services/xilmfs/src/mfs_filesys.c
lib/sw_services/xilmfs/src/mfs_filesys_util.c
lib/sw_services/xilmfs/src/utils/test_mfs_filesys.c
lib/sw_services/xilmfs/src/utils/testmfs.c
lib/sw_services/xilmfs/src/utils/testmfsflashrom.c
lib/sw_services/xilmfs/src/utils/testmfsrom.c
lib/sw_services/xilmfs/src/xilmfs.h
lib/sw_services/xilpm/data/xilpm.mld
lib/sw_services/xilpm/data/xilpm.tcl
lib/sw_services/xilpm/examples/gic_setup.c
lib/sw_services/xilpm/examples/gic_setup.h
lib/sw_services/xilpm/examples/timer.c
lib/sw_services/xilpm/examples/timer.h
lib/sw_services/xilpm/examples/xilpm_selfsuspend_example.c
lib/sw_services/xilpm/src/apu/pm_apu.h
lib/sw_services/xilpm/src/apu/pm_client.c
lib/sw_services/xilpm/src/apu/pm_client.h
lib/sw_services/xilpm/src/common/pm_api_sys.c
lib/sw_services/xilpm/src/common/pm_api_sys.h
lib/sw_services/xilpm/src/common/pm_callbacks.c
lib/sw_services/xilpm/src/common/pm_callbacks.h
lib/sw_services/xilpm/src/common/pm_cfg_obj.h
lib/sw_services/xilpm/src/common/pm_common.h
lib/sw_services/xilpm/src/common/pm_defs.h
lib/sw_services/xilpm/src/rpu/pm_client.c
lib/sw_services/xilpm/src/rpu/pm_client.h
lib/sw_services/xilpm/src/rpu/pm_rpu.h
lib/sw_services/xilrsa/data/xilrsa.mld
lib/sw_services/xilrsa/data/xilrsa.tcl
lib/sw_services/xilrsa/src/Makefile
lib/sw_services/xilrsa/src/include/xilrsa.h
lib/sw_services/xilsecure/data/xilsecure.mld
lib/sw_services/xilsecure/data/xilsecure.tcl
lib/sw_services/xilsecure/examples/xilsecure_aes_example.c
lib/sw_services/xilsecure/examples/xilsecure_rsa_example.c
lib/sw_services/xilsecure/examples/xilsecure_rsa_generic_example.c
lib/sw_services/xilsecure/examples/xilsecure_sha2_example.c
lib/sw_services/xilsecure/examples/xilsecure_sha_example.c
lib/sw_services/xilsecure/examples/xilsecure_simple_aes_example.c
lib/sw_services/xilsecure/src/Makefile
lib/sw_services/xilsecure/src/xsecure.c
lib/sw_services/xilsecure/src/xsecure.h
lib/sw_services/xilsecure/src/xsecure_aes.c
lib/sw_services/xilsecure/src/xsecure_aes.h
lib/sw_services/xilsecure/src/xsecure_hw.h
lib/sw_services/xilsecure/src/xsecure_rsa.c
lib/sw_services/xilsecure/src/xsecure_rsa.h
lib/sw_services/xilsecure/src/xsecure_sha.c
lib/sw_services/xilsecure/src/xsecure_sha.h
lib/sw_services/xilsecure/src/xsecure_sha2.h
lib/sw_services/xilskey/data/xilskey.mld
lib/sw_services/xilskey/data/xilskey.tcl
lib/sw_services/xilskey/examples/xilskey_bbram_example.c
lib/sw_services/xilskey/examples/xilskey_bbram_ultrascale_example.c
lib/sw_services/xilskey/examples/xilskey_bbram_ultrascale_input.h
lib/sw_services/xilskey/examples/xilskey_bbramps_zynqmp_example.c
lib/sw_services/xilskey/examples/xilskey_efuse_example.c
lib/sw_services/xilskey/examples/xilskey_efuseps_zynqmp_example.c
lib/sw_services/xilskey/examples/xilskey_efuseps_zynqmp_input.h
lib/sw_services/xilskey/examples/xilskey_input.h
lib/sw_services/xilskey/examples/xilskey_puf_registration.c
lib/sw_services/xilskey/examples/xilskey_puf_registration.h
lib/sw_services/xilskey/src/Makefile
lib/sw_services/xilskey/src/include/xilskey_bbram.h
lib/sw_services/xilskey/src/include/xilskey_epl.h
lib/sw_services/xilskey/src/include/xilskey_eps.h
lib/sw_services/xilskey/src/include/xilskey_eps_zynqmp.h
lib/sw_services/xilskey/src/include/xilskey_eps_zynqmp_puf.h
lib/sw_services/xilskey/src/include/xilskey_utils.h
lib/sw_services/xilskey/src/xilskey_bbram.c
lib/sw_services/xilskey/src/xilskey_bbramps_zynqmp.c
lib/sw_services/xilskey/src/xilskey_bbramps_zynqmp_hw.h
lib/sw_services/xilskey/src/xilskey_epl.c
lib/sw_services/xilskey/src/xilskey_eps.c
lib/sw_services/xilskey/src/xilskey_eps_zynqmp.c
lib/sw_services/xilskey/src/xilskey_eps_zynqmp_hw.h
lib/sw_services/xilskey/src/xilskey_eps_zynqmp_puf.c
lib/sw_services/xilskey/src/xilskey_epshw.h
lib/sw_services/xilskey/src/xilskey_js.h
lib/sw_services/xilskey/src/xilskey_jscmd.c
lib/sw_services/xilskey/src/xilskey_jscmd.h
lib/sw_services/xilskey/src/xilskey_jslib.c
lib/sw_services/xilskey/src/xilskey_jslib.h
lib/sw_services/xilskey/src/xilskey_jtag.h
lib/sw_services/xilskey/src/xilskey_utils.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S):
COPYRIGHT TEXT:
---------------
putnum.c -- put a hex number on the output device. Copyright (c) 1995 Cygnus
Support The authors hereby grant permission to use, copy, modify, distribute,
and license this software and its documentation for any purpose, provided that
existing copyright notices are retained in all copies and that this notice is
included verbatim in any distributions. No written agreement, license, or
royalty fee is required for any of the authorized uses. Modifications to this
software may be copyrighted by their authors and need not follow the licensing
terms described here, provided that the new terms are clearly indicated on the
first page of each file where they apply. / putnum -- print a 32 bit number in
hex / Include Files /
FILES:
lib/bsp/standalone/src/arm/common/putnum.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [Boost-1.0] [MIT]
COPYRIGHT TEXT:
---------------
All rights reserved. Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions: The
above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software. Use of the Software is limited
solely to applications: (a) running on a Xilinx device, or (b) that interact
with a Xilinx device through a bus or interconnect. THE SOFTWARE IS PROVIDED "AS
IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE XILINX CONSORTIUM BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of
the Xilinx shall not be used in advertising or otherwise to promote the sale,
use or other dealings in this Software without prior written authorization from
Xilinx
FILES:
lib/bsp/standalone/src/arm/cortexr5/xil_mmu.h
lib/sw_apps/lwip_echo_server/src/platform_zynqmp.c
lib/sw_apps/mba_fs_boot/src/fs-boot.c
lib/sw_apps/mba_fs_boot/src/fs-boot.h
lib/sw_apps/mba_fs_boot/src/fs-xspi.c
lib/sw_apps/mba_fs_boot/src/fs-xspi.h
lib/sw_apps/mba_fs_boot/src/spi-flash.h
lib/sw_apps/mba_fs_boot/src/winbond-spi-flash.c
lib/sw_apps/zynqmp_pmufw/src/pm_pll.c
lib/sw_apps/zynqmp_pmufw/src/pm_pll.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_dap.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_dap.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_legacy.c
lib/sw_apps/zynqmp_pmufw/src/xpfw_mod_legacy.h
lib/sw_apps/zynqmp_pmufw/src/xpfw_rom_interface.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S):
COPYRIGHT TEXT:
---------------
print.c -- print a string on the output device. Copyright (c) 1995 Cygnus
Support The authors hereby grant permission to use, copy, modify, distribute,
and license this software and its documentation for any purpose, provided that
existing copyright notices are retained in all copies and that this notice is
included verbatim in any distributions. No written agreement, license, or
royalty fee is required for any of the authorized uses. Modifications to this
software may be copyrighted by their authors and need not follow the licensing
terms described here, provided that the new terms are clearly indicated on the
first page of each file where they apply. / print -- do a raw print of a string
/
FILES:
lib/bsp/standalone/src/common/print.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [EPL-1.0]
COPYRIGHT TEXT:
---------------
All rights reserved. This file contains confidential and proprietary information
of Xilinx, Inc. and is protected under U.S. and international copyright and
other intellectual property laws. DISCLAIMER This disclaimer is not a license
and does not grant any rights to the materials distributed herewith. Except as
otherwise provided in a valid license issued to you by Xilinx, and to the
maximum extent permitted by applicable law: (1) THESE MATERIALS ARE MADE
AVAILABLE "AS IS" AND WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL
WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT
LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY
PARTICULAR PURPOSE; and (2) Xilinx shall not be liable (whether in contract or
tort, including negligence, or under any other theory of liability) for any loss
or damage of any kind or nature related to, arising under or in connection with
these materials, including for any direct, or any indirect, special, incidental,
or consequential loss or damage (including loss of data, profits, goodwill, or
any type of loss or damage suffered as a result of any action brought by a third
party) even if such damage or loss was reasonably foreseeable or Xilinx had been
advised of the possibility of the same. CRITICAL APPLICATIONS Xilinx products
are not designed or intended to be fail-safe, or for use in any application
requiring fail-safe performance, such as life-support or safety devices or
systems, Class III medical devices, nuclear facilities, applications related to
the deployment of airbags, or any other applications that could lead to death,
personal injury, or severe property or environmental damage (individually and
collectively, "Critical Applications"). Customer assumes the sole risk and
liability of any use of Xilinx products in Critical Applications, subject only
to applicable laws and regulations governing limitations on product liability.
THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE AT
ALL TIMES. Top level Makefile $Id: Makefile_mb.sh,v 1.1.2.1 2011/08/25 12:12:50
anirudh Exp $ Processor architecture microblaze
FILES:
lib/bsp/xilkernel/src/Makefile_mb.sh
lib/bsp/xilkernel/src/Makefile_ppc.sh
lib/bsp/xilkernel/src/src/Makefile
lib/bsp/xilkernel/src/src/arch/microblaze/Makefile
lib/bsp/xilkernel/src/src/arch/ppc/Makefile
lib/bsp/xilkernel/src/src/ipc/Makefile
lib/bsp/xilkernel/src/src/sys/Makefile
lib/bsp/xilkernel/src/syscall/Makefile
lib/bsp/xilkernel/src/syscall/arch/microblaze/Makefile
lib/bsp/xilkernel/src/syscall/arch/ppc/Makefile
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [EPL-1.0]
COPYRIGHT TEXT:
---------------
All rights reserved. This file contains confidential and proprietary information
of Xilinx, Inc. and is protected under U.S. and international copyright and
other intellectual property laws. DISCLAIMER This disclaimer is not a license
and does not grant any rights to the materials distributed herewith. Except as
otherwise provided in a valid license issued to you by Xilinx, and to the
maximum extent permitted by applicable law: (1) THESE MATERIALS ARE MADE
AVAILABLE "AS IS" AND WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL
WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT
LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY
PARTICULAR PURPOSE; and (2) Xilinx shall not be liable (whether in contract or
tort, including negligence, or under any other theory of liability) for any loss
or damage of any kind or nature related to, arising under or in connection with
these materials, including for any direct, or any indirect, special, incidental,
or consequential loss or damage (including loss of data, profits, goodwill, or
any type of loss or damage suffered as a result of any action brought by a third
party) even if such damage or loss was reasonably foreseeable or Xilinx had been
advised of the possibility of the same. CRITICAL APPLICATIONS Xilinx products
are not designed or intended to be fail-safe, or for use in any application
requiring fail-safe performance, such as life-support or safety devices or
systems, Class III medical devices, nuclear facilities, applications related to
the deployment of airbags, or any other applications that could lead to death,
personal injury, or severe property or environmental damage (individually and
collectively, "Critical Applications"). Customer assumes the sole risk and
liability of any use of Xilinx products in Critical Applications, subject only
to applicable laws and regulations governing limitations on product liability.
THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE AT
ALL TIMES. / Zynq DDR Self-refresh This DDR self refresh application provides a
simple demonstration of how to enter to/exit from DDR self refresh mode. This
application runs on R5 out of TCM. /
FILES:
lib/sw_apps/ddr_self_refresh/src/main.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [EPL-1.0]
COPYRIGHT TEXT:
---------------
All rights reserved. This file contains confidential and proprietary information
of Xilinx, Inc. and is protected under U.S. and international copyright and
other intellectual property laws. DISCLAIMER This disclaimer is not a license
and does not grant any rights to the materials distributed herewith. Except as
otherwise provided in a valid license issued to you by Xilinx, and to the
maximum extent permitted by applicable law: (1) THESE MATERIALS ARE MADE
AVAILABLE "AS IS" AND WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL
WARRANTIES AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT
LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY
PARTICULAR PURPOSE; and (2) Xilinx shall not be liable (whether in contract or
tort, including negligence, or under any other theory of liability) for any loss
or damage of any kind or nature related to, arising under or in connection with
these materials, including for any direct, or any indirect, special, incidental,
or consequential loss or damage (including loss of data, profits, goodwill, or
any type of loss or damage suffered as a result of any action brought by a third
party) even if such damage or loss was reasonably foreseeable or Xilinx had been
advised of the possibility of the same. CRITICAL APPLICATIONS Xilinx products
are not designed or intended to be fail-safe, or for use in any application
requiring fail-safe performance, such as life-support or safety devices or
systems, Class III medical devices, nuclear facilities, applications related to
the deployment of airbags, or any other applications that could lead to death,
personal injury, or severe property or environmental damage (individually and
collectively, "Critical Applications"). Customer assumes the sole risk and
liability of any use of Xilinx products in Critical Applications, subject only
to applicable laws and regulations governing limitations on product liability.
THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE AT
ALL TIMES. /
FILES:
lib/sw_apps/ddr_self_refresh/src/xil_ddr.h
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [GPL] [Free-Software-Foundation] [EPL-1.0]
COPYRIGHT TEXT:
---------------
FreeRTOS V8.2.1 - Copyright (C) 2015 Real Time Engineers Ltd. All rights
reserved VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST
VERSION. This file is part of the FreeRTOS distribution. FreeRTOS is free
software; you can redistribute it and/or modify it under the terms of the GNU
General Public License (version 2) as published by the Free Software Foundation
>>!AND MODIFIED BY!<< the FreeRTOS exception. >>! NOTE: The modification to the
GPL is included to allow you to !<< >>! distribute a combined work that includes
FreeRTOS without being !<< >>! obliged to provide the source code for
proprietary components !<< >>! outside of the FreeRTOS kernel. !<< FreeRTOS is
distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. Full license text is available on the following link:
http://www.freertos.org/a00114.html 1 tab 4 spaces! Having a problem? Start by
reading the FAQ "My application does not run, what could be wrong?". Have you
defined configASSERT()? http://www.FreeRTOS.org/FAQHelp.html FreeRTOS provides
completely free yet professionally developed, robust, strictly quality
controlled, supported, and cross platform software that is more than just the
market leader, it is the industry's de facto standard. Help yourself get started
quickly while simultaneously helping to support the FreeRTOS project by
purchasing a FreeRTOS tutorial book, reference manual, or both:
http://www.FreeRTOS.org/Documentation Investing in training allows your team to
be as productive as possible as early as possible, lowering your overall
development cost, and enabling you to bring a more robust product to market
earlier than would otherwise be possible. Richard Barry is both the architect
and key author of FreeRTOS, and so also the world's leading authority on what is
the world's most popular real time kernel for deeply embedded MCU designs.
Obtaining your training from Richard ensures your team will gain directly from
his in-depth product knowledge and years of usage experience. Contact Real Time
Engineers Ltd to enquire about the FreeRTOS Masterclass, presented by Richard
Barry: http://www.FreeRTOS.org/contact You are receiving this top quality
software for free. Please play fair and reciprocate by reporting any suspected
issues and participating in the community forum: http://www.FreeRTOS.org/support
Thank you! http://www.FreeRTOS.org - Documentation, books, training, latest
versions, license and Real Time Engineers Ltd. contact details.
http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
including FreeRTOS+Trace - an indispensable productivity tool, a DOS compatible
FAT file system, and our tiny thread aware UDP/IP stack.
http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. Come
and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS
licenses offer ticketed support, indemnification and commercial middleware.
http://www.SafeRTOS.com - High Integrity Systems also provide a safety
engineered and independently SIL3 certified version for use in safety and
mission critical applications that require provable dependability. 1 tab 4
spaces! FreeRTOS includes. /
FILES:
lib/sw_apps/freertos_hello_world/src/freertos_hello_world.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [BSD] [BSD-3] [BSD-2] [Google]
COPYRIGHT TEXT:
---------------
All rights reserved. Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following conditions are
met: 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. 2. Redistributions in
binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials
provided with the distribution. 3. Neither the name of Xilinx nor the names of
its contributors may be used to endorse or promote products derived from this
software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY
THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. / ipi_latency_demod.c This is the
remote side of the IPI latency measurement demo. This demo does the follwing
steps: 1. Open the shared memory device. 1. Open the TTC timer device. 2. Open
the IPI device. 3. Register IPI interrupt handler. 6. When it receives IPI
interrupt, the IPI interrupt handler to stop the RPU to APU TTC counter. 7.
Check the shared memory to see if demo is on. If the demo is on, reest the RPU
to APU TTC counter and kick IPI to notify the remote. 8. If the shared memory
indicates the demo is off, cleanup resource: disable IPI interrupt and
deregister the IPI interrupt handler. /
FILES:
lib/sw_apps/libmetal_echo_demo/src/ipi_latency_demod.c
lib/sw_apps/libmetal_echo_demo/src/ipi_shmem_demod.c
lib/sw_apps/libmetal_echo_demo/src/shmem_atomic_demod.c
lib/sw_apps/libmetal_echo_demo/src/shmem_demod.c
lib/sw_apps/libmetal_echo_demo/src/system/freertos/libmetal_amp_demod.c
lib/sw_apps/libmetal_echo_demo/src/system/generic/libmetal_amp_demod.c
lib/sw_apps/libmetal_echo_demo/src/shmem_latency_demod.c
lib/sw_apps/libmetal_echo_demo/src/shmem_throughput_demod.c
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [BSD] [BSD-3] [BSD-2] [Google]
COPYRIGHT TEXT:
---------------
Copyright (c) 2014, Mentor Graphics Corporation All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met: 1. Redistributions
of source code must retain the above copyright notice, this list of conditions
and the following disclaimer. 2. Redistributions in binary form must reproduce
the above copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the distribution. 3.
Neither the name of Mentor Graphics Corporation nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY
THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. / FILE NAME platform_info.c
DESCRIPTION This file define platform specific data and implements APIs to set
platform specific information for OpenAMP. /
FILES:
lib/sw_apps/openamp_echo_test/src/machine/zynq7/platform_info.c
lib/sw_apps/openamp_echo_test/src/machine/zynqmp_r5/platform_info.c
lib/sw_apps/openamp_echo_test/src/machine/zynq7/rsc_table.c
lib/sw_apps/openamp_echo_test/src/machine/zynq7/rsc_table.h
lib/sw_apps/openamp_echo_test/src/machine/zynqmp_r5/rsc_table.c
lib/sw_apps/openamp_echo_test/src/machine/zynqmp_r5/rsc_table.h
lib/sw_apps/openamp_matrix_multiply/src/machine/zynq7/rsc_table.c
lib/sw_apps/openamp_matrix_multiply/src/machine/zynq7/rsc_table.h
lib/sw_apps/openamp_matrix_multiply/src/machine/zynqmp_r5/rsc_table.c
lib/sw_apps/openamp_matrix_multiply/src/machine/zynqmp_r5/rsc_table.h
lib/sw_apps/openamp_rpc_demo/src/machine/zynq7/rsc_table.c
lib/sw_apps/openamp_rpc_demo/src/machine/zynq7/rsc_table.h
lib/sw_apps/openamp_rpc_demo/src/machine/zynqmp_r5/rsc_table.c
lib/sw_apps/openamp_rpc_demo/src/machine/zynqmp_r5/rsc_table.h
--------------------------------------------------------------------------------
POSSIBLE NOTICE(S): [BSD] [BSD-3] [BSD-2] [Google]