-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlist.json
More file actions
1924 lines (1924 loc) · 182 KB
/
list.json
File metadata and controls
1924 lines (1924 loc) · 182 KB
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
{
"num": 93,
"designs": [
{
"id": "-",
"title": "Agilex 7 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.3.1/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "AI",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/releases/download/25.3.1-v1.0/agilex7_niosv_g_tinyml_liteRT.zip",
"downloadUrl": "agilex7_niosv_g_tinyml_liteRT.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.3.1/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/docs/Nios_Vg_Processor_TinyML_Design_on_Agilex_7_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/344658973",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Nios V/m Transceiver Loopback design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex 7 FPGA F-Series Development Kit 2xF-Tile DK-DEV-AGF027F1ES",
"device_part": "AGFD023R24C2E1VC",
"description": "F-Tile Transceiver loopback design on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)",
"rich_description": "<p>This design demonstrates the serial loopback via QSFPDD on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.3.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/img/niosv_xcver.png\"/></p>",
"category": "Transceiver",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/releases/download/25.3.1-v1.0/agilex7_xcver_loopback.zip",
"downloadUrl": "agilex7_xcver_loopback.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.3.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/docs/Nios_Vm_Processor_PAM4_8x53Gbps_with_QSFPDD_Serial_loopback_design.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/344685849",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Lockstep Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based Lockstep example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This design demonstrates the working of NiosV/g lockstep feature through the standard fail safe control mechanism using by injecting root faults and reading alarms with Nios® V/m as the system supervisor on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.3.1/agf014ea-dev-devkit/niosv_g/lockstep/img/block_diagram.png\"/></p>",
"category": "Nios V",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/releases/download/25.3.1-v1.0/agilex7_niosv_g_lockstep.zip",
"downloadUrl": "agilex7_niosv_g_lockstep.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.3.1/agf014ea-dev-devkit/niosv_g/lockstep/docs/Nios_Vg_Processor_Lockstep_Design_on_Agilex_7_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/348032378",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Lockstep Example Design Example on Nios V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/g Processor-based Lockstep example design on the Agilex 7 FPGA.",
"rich_description": "<p>This design demonstrates the working of NiosV/g lockstep feature through the standard fail safe control mechanism using by injecting root faults and reading alarms with Nios V/m as the system supervisor on Agilex 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.3.0/agf014ea-dev-devkit/niosv_g/lockstep/img/block_diagram.png\"/></p>",
"category": "Nios V",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/25.3.0/agf014ea-dev-devkit/niosv_g/lockstep",
"downloadUrl": "agilex7_niosv_g_lockstep.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.3.0/agf014ea-dev-devkit/niosv_g/lockstep/docs/Nios_Vg_Processor_Lockstep_Design_on_Agilex_7_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/303653381",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor Transceiver Loopback design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 7 FPGA F-Series Development Kit 2xF-Tile DK-DEV-AGF027F1ES",
"device_part": "AGFD023R24C2E1VC",
"description": "F-Tile Transceiver loopback design on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)",
"rich_description": "<p>This design demonstrates the serial loopback via QSFPDD on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.3.0/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/img/niosv_xcver.png\"/></p>",
"category": "Transceiver",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/25.3.0/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/",
"downloadUrl": "agilex7_xcver_loopback.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.3.0/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/docs/Nios_Vm_Processor_PAM4_8x53Gbps_with_QSFPDD_Serial_loopback_design.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/303653851",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/c Processor PIO & OCM Test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1 Pro",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "This design demonstrates the transaction between the Nios® V processor and the PIO core along with OCM Memory test.",
"rich_description": "<p>The PIO core is configured for output ports only and the outputs are connected to the LED on the development kit. The application, which runs atop this design, toggles these output registers of the PIO core. The application writes and reads back the content from the IP location. Additionally, the OCM memory tests are performed.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_c/pio_ocm/img/pio.png\"/></p>",
"category": "PIO LED Toggle",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_c/pio_ocm/docs/Nios_Vc_Processor_PIO_OCM_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_c_pio_ocm.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291413003",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Custom Instruction CRC Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based custom instruction Cyclic Redundancy Check (CRC) example design on the Agilex® 7 FPGA.",
"rich_description": "<p>A Processing Engine (PE) that performs the Cyclic Redundancy Check (CRC) algorithm is connected to the Nios® V/g processor using the custom instruction interface</p><p>The current version of the Nios® V/g processor custom instruction interface supports operations up-to 32-Bit. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ci_crc/img/niosv_ci_example.png\"/></p>",
"category": "Custom Instruction",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ci_crc/docs/Nios_Vg_Processor_CI_CRC_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_g_ci_crc.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291405074",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Custom Instruction Basic Operations Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based custom instruction example design on the Agilex® 7 FPGA.",
"rich_description": "<p>A Processing Engine (PE) that performs basic arithmetic and logical computations is connected to the Nios® V/g processor using the custom instruction interface. </p><p>The current version of the Nios® V/g processor custom instruction interface supports operations up-to 32-Bit. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ci_basic_operations/img/niosv_ci_example.png\"/></p>",
"category": "",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ci_basic_operations/docs/Nios_Vg_Processor_CI_Basic_Operations_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_ci_basic_operations.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291397552",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Processor ECC Lite test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Agilex 7 FPGA - ECC Lite Design Example on Nios® V/g Processor",
"rich_description": "<p>This design demonstrates the ECC Lite feature of the Nios® V/g core by injecting an error on the General-Purpose Register (GPR) via simulation.</p><p>The ECC status and ECC source is observed for both correctable and uncorrectable errors on the General-Purpose Registers (GPR).</p><p>The Error is injected on the OCM (M20k) GPR through the ECC parity flip feature. The parity value in the GPR is flipped using the force command in the test bench file (sys_tb.v). </p><p>The ECC Status and ECC Source signals are probed and observed using Questa Simulation</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ecc_lite/img/ecc_lite.png\"/></p>",
"category": "ECC",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_g/ecc_lite/docs/NiosV_g_Processor_ECC_Lite_test_Example_design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_ecc_lite.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290940866",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Processor Floating Point Unit (FPU) Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/g Processor-based design example with Floating Point Unit (FPU) on Agilex™ 7 FPGA F-Series Transceiver-SoC Development Kit (P-Tile and E-Tile)",
"rich_description": "<p>This example design is about applying the floating point unit in Nios V/g processor. The example application evaluates the floating point rate of Nios V/g processor by using Linpack benchmark.\n More information on the Linpack Benchmark can be found here- https://top500.org/project/linpack/</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014eb-si-devkit/niosv_g/fpu_test/img/block_diagram.png\"/></p>",
"category": "FPU",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014eb-si-devkit/niosv_g/fpu_test/docs/NiosV_g_Processor_Floating_Point_Unit_Example_design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_g_fpu_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290947492",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Tightly Coupled Memory (TCM) Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based TCM example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This example design is about how to use tightly coupled memory in Nios® V/g processor. The example application measures the memory access speed of different memories connected to the processor, such as TCM, on-chip memory and external memory interface (EMIF). In addition to that, the application showcases the speedup between cached and un-cached memories.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014eb-si-devkit/niosv_g/tcm_mem_test/img/niosv_tcm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014eb-si-devkit/niosv_g/tcm_mem_test/docs/Nios_Vg_Processor_Tightly_Coupled_Memory_Test_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_tcm.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291236753",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "Machine Learning",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/25.1.1-v1.0/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/docs/Nios_Vg_Processor_TinyML_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_g_tinyml_liteRT.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291414938",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Hello World Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based Hello World example design on the Agilex® 7 FPGA.",
"rich_description": "<p>Nios® V/g Processor-based Helloworld example design on the Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_g/hello_world/img/hello_world.png\"/></p>",
"category": "Hello World",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_g/hello_world/docs/Nios_Vg_Processor_Hello_World_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_g_hello_world.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290930424",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Hello World Example Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/m Processor-based Hello World example design on the Agilex® 7 FPGA.",
"rich_description": "<p>Nios® V/m Processor-based Helloworld example design on the Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/hello_world/img/hello_world.png\"/></p>",
"category": "Hello World",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/hello_world/docs/Nios_Vm_Processor_Hello_World_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_hello_world.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290925870",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor DMA - OCM Memory test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/m Processor-based Direct Memory Access (DMA) and On-Chip Memory (OCM) Test design Example on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"rich_description": "<p>This example design includes a NIOS V/m embedded processor connected to the DMA, On Chip RAM and JTAG UART IP. \nThe objective of the design is to accomplish a data transfer between the 2 On Chip RAM using a DMA (MSGDMA) IP. \nDMA facilitates the data transfer which is then read back by the processor.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/dma_ocm_mem_test/img/dma_ocm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/dma_ocm_mem_test/docs/Nios_Vm_Processor_DMA_OCM_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_dma_ocm_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290951914",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor OCM to OCM Memory test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/m Processor-based On-Chip Memory (OCM) Test design Example on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"rich_description": "<p>This example design includes a NIOS V/m embedded processor connected to the OCM and JTAG UART IP. \nThe objective of the design is to write and read into specific locations of On Chip RAM. This implementation of On Chip RAM uses the Avalon interface.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/ocm_mem_test/img/ocm_mem_test.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/ocm_mem_test/docs/NiosV_m_Processor_OCM_Memory_test_Example_design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_ocm_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290944187",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor PIO LED toggle Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "This design demonstrates the transaction between the Nios® V processor and the PIO core.",
"rich_description": "<p>The PIO core is configured for output ports only and the outputs are connected to the LED on the development kit. The application, which runs atop this design, toggles these output registers of the PIO core. The application writes and reads back the content from the IP location. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/pio_test/img/pio.png\"/></p>",
"category": "PIO LED Toggle",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/pio_test/docs/NiosV_m_Processor_PIO_test_Example_design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_pio_led_toggle.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290937863",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor Timer Interval Interrupt Test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/m Processor-based Timer Interrupt design Example on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"rich_description": "<p>This example design includes a NIOS V/m embedded processor connected to the Interval Timer IP to issue alarm-based interrupt to the NIOSV/m core. \nThe objective of the design is to demonstrate the interrupt behavior and handling by the Nios V embedded processor. Once the interrupt is issued; the Nios V prints the system ID of the SYS ID peripheral core.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/isr_test/img/isr_test.png\"/></p>",
"category": "Timer",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/isr_test/docs/NiosV_m_Processor_Timer_Interval_Interrupt_Test_Example_design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_isr_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290854574",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Iperf Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex™ 7 FPGA F-Series Transceiver-SoC Development Kit (P-Tile and E-Tile)",
"device_part": "AGFB014R24B2E2V",
"description": "Perf 2 is a benchmarking tool for measuring performance between two systems, and it can be used as a server or a client.",
"rich_description": "<p>An iPerf server receives an iPerf request sent over a TCP/IP connection from any iPerf clients and runs the iPerf test according to the provided arguments.\n Each test reports the bandwidth, loss, and other parameters. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_iperf/img/agilex7_iperf.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_iperf/docs/NiosV_m_Processor_Iperf_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_sisoc_iperf.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290881313",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m SSS Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex™ 7 FPGA F-Series Transceiver-SoC Development Kit (P-Tile and E-Tile)",
"device_part": "AGFB014R24B2E2V",
"description": "Simple Socket Server design on Agilex™ 7 FPGA F-Series Transceiver-SoC Development Kit (P-Tile and E-Tile)",
"rich_description": "<p>The telnet client offers a convenient way of issuing commands over a TCP/IP socket to the Ethernet-connected μC/TCP-IP running on the development board with a simple TCP/IP socket server example. \n The socket server example receives commands sent over a TCP/IP connection and turns LEDs on and off according to the commands. \n The example consists of a socket server task that listens for commands on a TCP/IP port and dispatches those commands to a set of LED management tasks. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_sss/img/agilex7_sss.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_sss/docs/NiosV_m_Processor_SSS_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_sisoc_sss.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290922946",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor Transceiver Loopback design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 7 FPGA F-Series Development Kit 2xF-Tile DK-DEV-AGF027F1ES",
"device_part": "AGFB027R24C2E2VR2",
"description": "F-Tile Transceiver loopback design on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)",
"rich_description": "<p>This design demonstrates the serial loopback via QSFPDD on Agilex™ 7 FPGA F-Series Development Kit (2xF-Tile)</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/img/niosv_xcver.png\"/></p>",
"category": "Transceiver",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/docs/Nios_Vm_Processor_PAM4_8x53Gbps_with_QSFPDD_Serial_loopback_design.md",
"downloadUrl": "agilex7_xcver_loopback.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/290924003",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor EMIF data mover Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/m Processor-based External Memory Interface (EMIF) data mover example design on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"rich_description": "<p>This example design includes a NIOS V/m embedded processor connected to the External Memory Interface (EMIF), DMA, On Chip RAM and JTAG UART IP. \nThe objective of the design is to accomplish a data transfer between the On Chip RAM and the DDR (EMIF) using a DMA (MSGDMA) IP. \nDMA facilitates the data transfer which is then read back by the processor.</p><p>This design uses the Nios V processor hosted on the fabric to communicate with the external memory-DDR micron module. \nThe code is booted from the on-chip memory, whereas the Nios V processor carries out certain transactions to and from the DDR using the EMIF controller.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/emif_mem_test/img/emif.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/emif_mem_test/docs/Nios_Vm_Processor_EMIF_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_emif_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291294615",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Processor DDR,DMA and OCM Memory test Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/m Processor-based Memory Test design Example on Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"rich_description": "<p>This example design includes a NIOS V/m embedded processor connected to the External Memory Interface (EMIF), DMA, On Chip RAM and JTAG UART IP. \nThe objective of the design is to accomplish a data transfer between the On Chip RAM and the DDR (EMIF) using a DMA (MSGDMA) IP. \nDMA facilitates the data transfer which is then read back by the processor.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.1/agf014ea-dev-devkit/niosv_m/ddr_dma_ocm_mem_test/img/ddr_dma.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/25.1.1/agf014ea-dev-devkit/niosv_m/ddr_dma_ocm_mem_test/docs/Nios_Vm_Processor_DDR_DMA_Design_on_Agilex_7_FPGA.md",
"downloadUrl": "agilex7_niosv_m_ddr_dma_ocm_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/291294306",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Processor Floating Point Unit (FPU) Design",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.0",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios V/g Processor-based design example with Floating Point Unit (FPU) on Agilex™ 7 FPGA F-Series Transceiver-SoC Development Kit (P-Tile and E-Tile)",
"rich_description": "<p>This example design is about applying the floating point unit in Nios V/g processor. The example application evaluates the floating point rate of Nios V/g processor by using Linpack benchmark.\n More information on the Linpack Benchmark can be found here- https://top500.org/project/linpack/</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.0/agf014eb-si-devkit/niosv_g/fpu_test/img/block_diagram.png\"/></p>",
"category": "FPU",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/releases/download/25.1.0-v1.0/agilex7_niosv_g_fpu_test.zip",
"downloadUrl": "agilex7_niosv_g_fpu_test.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/247498881",
"Q_GITHUB_RELEASE": "25.1.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "25.1.0",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/25.1.0/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "Machine Learning",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/releases/download/25.1.0-v1.0/agilex7_niosv_g_tinyml_liteRT.zip",
"downloadUrl": "agilex7_niosv_g_tinyml_liteRT.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/247502695",
"Q_GITHUB_RELEASE": "25.1.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Iperf Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex 7 FPGA F-Series Transceiver-SoC Development Kit P-Tile and E-Tile DK-SI-AGF014EB",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/m Processor-based Iperf example design on the Agilex® 7 FPGA.",
"rich_description": "<p>Perf 2 is a benchmarking tool for measuring performance between two systems, and it can be used as a server or a client.</p><p>An iPerf server receives an iPerf request sent over a TCP/IP connection from any iPerf clients and runs the iPerf test according to the provided arguments. </p><p>Each test reports the bandwidth, loss, and other parameters.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_iperf/img/agilex7_iperf.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/24.3.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_iperf",
"downloadUrl": "agilex7_sisoc_iperf.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/227789862",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Simple Socket Server (SSS) Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex 7 FPGA F-Series Transceiver-SoC Development Kit P-Tile and E-Tile DK-SI-AGF014EB",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/m Processor-based SSS example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This example design demonstrates communication with a telnet client on a development host PC.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_sss/img/agilex7_sss.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/24.3.1/agf014eb-si-devkit/niosv_m/agilex7_sisoc_sss/",
"downloadUrl": "agilex7_sisoc_sss.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/227789872",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Transceiver loopback Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex 7 FPGA F-Series Development Kit 2xF-Tile DK-DEV-AGF027F1ES",
"device_part": "AGFB027R24C2E2VR2",
"description": "",
"rich_description": "<p>This design demonstrates the serial loopback via QSFPDD on Agilex 7 FPGA F-Series Development Kit 2xF-Tile DK-DEV-AGF027F1ES</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp/img/niosv_xcver.png\"/></p>",
"category": "Transceiver Loopback",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/24.3.1/agf027f1es-dev-devkit/niosv_m/xcver_ser_lp",
"downloadUrl": "agilex7_xcver_loopback_design.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/227795504",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Custom Instruction Basic Operations Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based custom instruction example design on the Agilex® 7 FPGA.",
"rich_description": "<p>A Processing Engine (PE) that performs basic arithmetic and logical computations is connected to the Nios® V/g processor using the custom instruction interface. </p><p>The current version of the Nios® V/g processor custom instruction interface supports operations up-to 32-Bit. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ci_basic_operations/img/niosv_ci_example.png\"/></p>",
"category": "Custom Instruction",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ci_basic_operations",
"downloadUrl": "agilex7_ci_basic_operations.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/230247565",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Custom Instruction CRC Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based custom instruction Cyclic Redundancy Check (CRC) example design on the Agilex® 7 FPGA.",
"rich_description": "<p>A Processing Engine (PE) that performs the Cyclic Redundancy Check (CRC) algorithm is connected to the Nios® V/g processor using the custom instruction interface</p><p>The current version of the Nios® V/g processor custom instruction interface supports operations up-to 32-Bit. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ci_crc/img/niosv_ci_example.png\"/></p>",
"category": "Custom Instruction",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ci_crc",
"downloadUrl": "agilex7_ci_crc.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/230247575",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - ECC Lite Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based ECC Lite example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This design demonstrates the ECC Lite feature of the Nios® V/g core by injecting an error on the General-Purpose Register (GPR) via simulation.</p><p>The ECC status and ECC source is observed for both correctable and uncorrectable errors on the General-Purpose Registers (GPR).</p><p>The Error is injected on the OCM (M20k) GPR through the ECC parity flip feature. The parity value in the GPR is flipped using the force command in the test bench file (sys_tb.v). </p><p>The ECC Status and ECC Source signals are probed and observed using Questa Simulation</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ecc_lite/img/ecc_lite.png\"/></p>",
"category": "ECC",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/24.3.1/agf014ea-dev-devkit/niosv_g/ecc_lite",
"downloadUrl": "agilex7_ecc_lite.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/230251292",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - PIO and OCM test Design Example on Nios® V/c Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/c Processor-based PIO and OCM test example design on the Agilex® 7 FPGA.",
"rich_description": "<p>Nios® V/c processor-based PIO and OCM memory test example design on the Agilex® 7 FPGA</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014ea-dev-devkit/niosv_c/pio_ocm/img/niosv_compact_core_pio.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/24.3.1/agf014ea-dev-devkit/niosv_c/pio_ocm",
"downloadUrl": "agilex7_niosv_c_pio_ocm.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/230251382",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Tightly Coupled Memory (TCM) Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.1 Pro",
"devkit": "Agilex® 7 FPGA F-Series Development Kit P-Tile and E-Tile DK-DEV-AGF014EA",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/g Processor-based TCM example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This example design is about how to use tightly coupled memory in Nios® V/g processor. The example application measures the memory access speed of different memories connected to the processor, such as TCM, on-chip memory and external memory interface (EMIF). In addition to that, the application showcases the speedup between cached and un-cached memories.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3.1/agf014eb-si-devkit/niosv_g/tcm_mem_test/img/niosv_tcm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/tree/rel/24.3.1/agf014eb-si-devkit/niosv_g/tcm_mem_test",
"downloadUrl": "agilex7_tcm_design.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/230255618",
"Q_GITHUB_RELEASE": "24.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Iperf Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.0 Pro",
"devkit": "Agilex 7 FPGA F-Series Transceiver-SoC Development Kit P-Tile and E-Tile DK-SI-AGF014EB",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/m Processor-based Iperf example design on the Agilex® 7 FPGA.",
"rich_description": "<p>Perf 2 is a benchmarking tool for measuring performance between two systems, and it can be used as a server or a client.</p><p>An iPerf server receives an iPerf request sent over a TCP/IP connection from any iPerf clients and runs the iPerf test according to the provided arguments. </p><p>Each test reports the bandwidth, loss, and other parameters.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3/niosv_m/agilex7_sisoc_iperf/img/agilex7_iperf.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/24.3/niosv_m/agilex7_sisoc_iperf",
"downloadUrl": "agilex7_sisoc_iperf.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/220575358",
"Q_GITHUB_RELEASE": "24.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 7 FPGA - Simple Socket Server (SSS) Design Example on Nios® V/m Processor",
"source": "GitHub",
"family": "Agilex 7",
"quartus_version": "24.3.0 Pro",
"devkit": "Agilex 7 FPGA F-Series Transceiver-SoC Development Kit P-Tile and E-Tile DK-SI-AGF014EB",
"device_part": "AGFB014R24B2E2V",
"description": "Nios® V/m Processor-based SSS example design on the Agilex® 7 FPGA.",
"rich_description": "<p>This example design demonstrates communication with a telnet client on a development host PC.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex7f-nios-ed/rel/24.3/niosv_m/agilex7_sisoc_sss/img/agilex7_sss.png\"/></p>",
"category": "Web Server",
"url": "https://github.com/altera-fpga/agilex7f-nios-ed/blob/rel/24.3/niosv_m/agilex7_sisoc_sss/",
"downloadUrl": "agilex7_sisoc_sss.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex7f-nios-ed/releases/assets/220575932",
"Q_GITHUB_RELEASE": "24.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA ESeries 065B Premium Development Kit DKA5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 5 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex™ 5 FPGA E-Series 065B Premium Development Kit (ES1) DK-A5E065BB32AES1. </p><p><img alt=\"image\" src=\"https://github.com/intel-innersource/applications.fpga.niosv-example-designs.niosv-example-designs/blob/rel/25.3.1/a5e065b-prem-devkit/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "AI",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.3.1-v1.0/agilex5_niosv_g_tinyml_liteRT.zip",
"downloadUrl": "agilex5_niosv_g_tinyml_liteRT.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/intel-innersource/applications.fpga.niosv-example-designs.niosv-example-designs/blob/rel/25.3.1/agf014ea-dev-devkit/niosv_g/tinyml_liteRT/img/block_diagram.png"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/349981796",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Full Feature Golden Hardware Reference Design (GHRD) Overview",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the Full Feature Golden Hardware Reference Design (GHRD) that showcases the connectivity to multiple peripherals with Nios® V/m processor as the core on Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>This example design includes a Nios® V/m processor connected to various on-board peripherals.\nThe objective of the design is to accomplish data transfer between the processor and soft IP peripherals. Each peripheral has a dedicated application which demonstrates it's basic use.</p><p><img alt=\"Block Diagram\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.1/niosv_m/niosv_m_full_feature_ghrd/img/full_feature_ghrd_block_design.png\"/></p>",
"category": "GHRD",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.1.1-v1.0/agilex5_niosv_m_full_feature_ghrd.zip",
"downloadUrl": "agilex5_niosv_m_full_feature_ghrd.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.1/niosv_m/niosv_m_full_feature_ghrd/docs/NiosV_m_Processor_full_feature_ghrd_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/350402266",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Ping Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the Ping application on a Nios® V/g processor using the Triple Speed Ethernet IP for the Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>The example design demonstrates ping application. The Nios V/g acts as the core. The Triple Speed Ethernet (TSE) IP is configured in RGMII mode and connectes to the onboard 88E1512 PHY via RGMII interface. </p><p>The design has 2 MSGDMA IPs configured in Memory Mapped to Stream (MM2S) mode for Transmission and Stream to Memory Mapped (S2MM) mode for Reception.</p><p>To test the application, connect the RGMII Interface of the Agilex 5 Development Kit to the Link Partner using RJ-45 cable.</p><p>Ensure that the IP addresses are modified accordingly in the application code under the following location - sw/app_freertos/main.c</p><p>Once the application binaries are downloaded (See section 3.d below for the steps), the board starts pinging the link partner automatically.</p><p>Observe the Ping Request and Response prints on the terminal.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.1/niosv_g/niosv_g_webserver_ping/img/web_server_block_diagram.png\"/></p><h2>Fix for the packet drop issue observed in 25.3</h2><p>To fix the packet drops that were observed when the board and link partner ping each other in 25.3, make the changes described below:</p><p>File to be modified- msgdma_driver.c</p><p>File path - sw/bsp_freertos/FreeRTOS_TCP_IP/source/portable/NetworkInterface/AlteraTSE/msgdma_driver.c</p><p>Function to be modified- msgdma_InitRxDescList()</p><p>Modification- Add the highlighted lines as shown in the figure below</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.1/niosv_g/niosv_g_webserver_ping/img/msgdma_driver_update.png\"/></p><p>Note: The default BSP generated using niosv-bsp command will not have the above changes. Ensure these changes are done manually.</p><p>Once done, run niosv-app, cmake and make commands as mentioned in section 3.c below.</p>",
"category": "Networking",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.3.1-v1.0/agilex5_niosv_g_webserver_ping.zip",
"downloadUrl": "agilex5_niosv_g_webserver_ping.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.1/niosv_g/niosv_g_webserver_ping/docs/NiosV_g_Processor_ping_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/350434978",
"Q_GITHUB_RELEASE": "25.3.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/c Helloworld OCM Memory Test Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/c Processor-based Helloworld example design on the Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"rich_description": "<p>Nios® V/c Processor-based Helloworld example design on the Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.0/niosv_c/niosv_c_helloworld_ocm_mem_test/img/hello_world_ocm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.3.0/niosv_c/niosv_c_helloworld_ocm_mem_test",
"downloadUrl": "agilex5_niosv_c_helloworld_ocm_mem_test.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.3.0/niosv_m/niosv_m_dma_ocm/docs/Nios_Vc_Processor_Helloworld_OCM_Memory_Test_Design_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/303625312",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Ping Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the Ping application on a Nios® V/g processor using the Triple Speed Ethernet IP for the Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>The example design demonstrates ping application. The Nios V/g acts as the core. The Triple Speed Ethernet (TSE) IP is configured in RGMII mode and connectes to the onboard 88E1512 PHY via RGMII interface. \nThe design has 2 MSGDMA IPs configured in Memory Mapped to Stream (MM2S) mode for Transmission and Stream to Memory Mapped (S2MM) mode for Reception.</p><p>To test the application, connect the RGMII Interface of the Agilex 5 Development Kit to the Link Partner using RJ-45 cable.\nEnsure that the IP addresses are modified accordingly in the application code under the following location - sw/app_freertos/main.c\nOnce the application binaries are downloaded (See section 3.d below for the steps), the board starts pinging the link partner automatically.\nObserve the Ping Request and Response prints on the terminal.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.0/niosv_g/niosv_g_webserver_ping/img/web_server_block_diagram.png\"/></p>",
"category": "Networking",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.0/niosv_g/niosv_g_webserver_ping",
"downloadUrl": "agilex5_niosv_g_webserver_ping.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.0/niosv_g/niosv_g_webserver_ping/docs/NiosV_g_Processor_ping_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/307673766",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 5 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex™ 5 FPGA E-Series 065B Premium Development Kit (ES1) DK-A5E065BB32AES1. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.0/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "AI",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.3.0/niosv_g/tinyml_liteRT",
"downloadUrl": "agilex5_niosv_g_tinyml_liteRT.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.0/niosv_g/tinyml_liteRT/docs/Nios_Vg_Processor_TinyML_Design_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/303624448",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Full Feature Golden Hardware Reference Design (GHRD)",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.3.0",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the Full Feature Golden Hardware Reference Design (GHRD) that showcases the connectivity to multiple peripherals with Nios® V/m processor as the core on Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>This example design includes a Nios® V/m processor connected to various on-board peripherals.\nThe objective of the design is to accomplish data transfer between the processor and soft IP peripherals. Each peripheral has a dedicated application which demonstrates it's basic use.</p><p><img alt=\"Block Diagram\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.3.0/niosv_m/niosv_m_full_feature_ghrd/img/full_feature_ghrd_block_design.png\"/></p>",
"category": "Nios V",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.3.0/niosv_m/niosv_m_full_feature_ghrd",
"downloadUrl": "agilex5_niosv_m_full_feature_ghrd.zip",
"documentations": [
{
"title": "Design Document",
"downloadUrl": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.3.0/niosv_m/niosv_m_full_feature_ghrd/docs/NiosV_m_Processor_full_feature_ghrd_on_Agilex_5_FPGA.md"
}
],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/304466553",
"Q_GITHUB_RELEASE": "25.3.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/c Helloworld OCM Memory Test Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/c Processor-based Helloworld example design on the Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"rich_description": "<p>Nios® V/c Processor-based Helloworld example design on the Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_c/niosv_c_helloworld_ocm_mem_test/img/hello_world_ocm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.1.1/niosv_m/niosv_m_dma_ocm/docs/Nios_Vc_Processor_Helloworld_OCM_Memory_Test_Design_on_Agilex_5_FPGA.md",
"downloadUrl": "agilex5_niosv_c_helloworld_ocm_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/290020590",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA - Hello World on Nios® V/g Processor Design Example",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/g Processor-based Helloworld example design on the Agilex® 5 FPGA.",
"rich_description": "<p>Nios® V/g Processor-based Helloworld example design on the Agilex® 5 FPGA E-Series 065B Premium Development Kit (ES1) DKA5E065BB32AES1</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_g/niosv_g_helloworld/img/hello_world.png\"/></p>",
"category": "Helloworld",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.1.1/niosv_g/niosv_g_helloworld/img/block_diagram.png",
"downloadUrl": "agilex5_niosv_g_helloworld.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/289537233",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/g Processor-based OCM test example Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Agilex 5 FPGA - OCM Memory test example design on Nios® V/g Processor",
"rich_description": "<p>Nios® V/g Processor-based OCM test example design on the Agilex® 5 FPGA E-Series 065B Premium Development Kit (ES1) DKA5E065BB32AES1</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_g/niosv_g_ocm_mem_test/img/hello_world_ocm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/blob/rel/25.1.1/niosv_g/niosv_g_ocm_mem_test/docs/Nios_Vg_Processor_OCM_Mem_Test_Design_on_Agilex_5_FPGA.md",
"downloadUrl": "agilex5_niosv_g_ocm_mem_test.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/289537677",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m DMA OCM Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the transaction between the Nios® V processor with DMA and OCM core for the AgilexTM 5 FPGA E-Series 065B Premium Development Kit (ES1) DK-A5E065BB32AES1.",
"rich_description": "<p>This example design includes a Nios® V/m processor connected to the On Chip RAM-II, JTAG UART IP, Parallel-IO and System ID peripheral core. The objective of the design is to accomplish data transfer between the processor and soft IP peripherals.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_m/niosv_m_dma_ocm/img/dma_ocm.png\"/></p>",
"category": "Memory",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.1.1/niosv_m/niosv_m_dma_ocm/docs/NiosV_m_Processor_DMA_OCM_Design_on_Agilex_5_FPGA.md",
"downloadUrl": "agilex5_niosv_m_dma_ocm.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/289538652",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA ESeries 065B Premium Development Kit DKA5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 5 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex™ 5 FPGA E-Series 065B Premium Development Kit (ES1) DK-A5E065BB32AES1. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "Machine Learning",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.1.1/niosv_g/tinyml_liteRT",
"downloadUrl": "agilex5_niosv_g_tinyml_liteRT.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/289537999",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Baseline Golden Hardware Reference Design (GHRD)",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.1",
"patch_number": "Unknown",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the baseline Golden Hardware Reference Design (GHRD) for a Nios® V/m processor with basic bare minimum peripherals required for any application execution for the Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>This example design includes a Nios® V/m processor connected to the On Chip RAM-II, JTAG UART IP, Parallel-IO and System ID peripheral core. The objective of the design is to accomplish data transfer between the processor and soft IP peripherals.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.1/niosv_m/niosv_m_baseline_ghrd/img/baseling_ghrd_block_design.png\"/></p>",
"category": "GHRD",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/tree/rel/25.1.1/niosv_m/niosv_m_baseline_ghrd",
"downloadUrl": "agilex5_niosv_m_baseline_ghrd.zip",
"documentations": [],
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/290910119",
"Q_GITHUB_RELEASE": "25.1.1-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA- Nios V/c Helloworld OCM Memory test Design",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.0",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/c Processor-based Helloworld and OCM memory test example design",
"rich_description": "<p>This design prints a simple Hello World message and performs a simple OCM memory test for the Agilex™ 5 FPGA E-Series 065B Premium Development Kit.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.0/niosv_c/niosv_c_helloworld_ocm_mem_test/img/hello_world_ocm.png\"/></p>",
"category": "Helloworld",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.1.0-v1.0/agilex5_niosv_c_helloworld_ocm_mem_test.zip",
"downloadUrl": "agilex5_niosv_c_helloworld_ocm_mem_test.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/247496342",
"Q_GITHUB_RELEASE": "25.1.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Nios® V/m Baseline Golden Hardware Reference Design (GHRD)",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.0",
"devkit": "Agilex 5 FPGA E-Series 065B Premium Development Kit DK-A5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "This design demonstrates the baseline Golden Hardware Reference Design (GHRD) for a Nios® V/m processor with basic bare minimum peripherals required for any application execution for the Agilex™ 5 FPGA E-Series 065B Premium Development Kit.",
"rich_description": "<p>This example design includes a Nios® V/m processor connected to the On Chip RAM-II, JTAG UART IP, Parallel-IO and System ID peripheral core. The objective of the design is to accomplish data transfer between the processor and soft IP peripherals.</p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.0/niosv_m/niosv_m_baseline_ghrd/img/baseling_ghrd_block_design.png\"/></p>",
"category": "GHRD",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.1.0-v1.0/agilex5_niosv_m_baseline_ghrd.zip",
"downloadUrl": "agilex5_niosv_m_baseline_ghrd.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/247187115",
"Q_GITHUB_RELEASE": "25.1.0-v1.0",
"Q_VALIDATED": true
},
{
"id": "-",
"title": "Agilex 5 FPGA - TinyML LiteRT Example Design Example on Nios® V/g Processor",
"source": "GitHub",
"family": "Agilex 5",
"quartus_version": "25.1.0",
"devkit": "Agilex 5 FPGA ESeries 065B Premium Development Kit DKA5E065BB32AES1",
"device_part": "A5ED065BB32AE6SR0",
"description": "Nios® V/g Processor-based TinyML LiteRT example design on the Agilex® 5 FPGA.",
"rich_description": "<p>This design demonstrates the TinyML application using LiteRT for microcontrollers software with Nios® V/g processor in the Agilex™ 5 FPGA E-Series 065B Premium Development Kit (ES1) DK-A5E065BB32AES1. </p><p><img alt=\"image\" src=\"https://raw.githubusercontent.com/altera-fpga/agilex5e-nios-ed/rel/25.1.0/niosv_g/tinyml_liteRT/img/block_diagram.png\"/></p>",
"category": "Machine Learning",
"url": "https://github.com/altera-fpga/agilex5e-nios-ed/releases/download/25.1.0-v1.0/agilex5_niosv_g_tinyml_liteRT.zip",
"downloadUrl": "agilex5_niosv_g_tinyml_liteRT.zip",
"Q_DOWNLOAD_URL": "https://api.github.com/repos/altera-fpga/agilex5e-nios-ed/releases/assets/247504926",
"Q_GITHUB_RELEASE": "25.1.0-v1.0",