-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAlifSemiconductor.Ensemble.pdsc
More file actions
3421 lines (3210 loc) · 209 KB
/
AlifSemiconductor.Ensemble.pdsc
File metadata and controls
3421 lines (3210 loc) · 209 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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="1.7.50" xs:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Open-CMSIS-Pack/Open-CMSIS-Pack-Spec/v1.7.50/schema/PACK.xsd">
<vendor>AlifSemiconductor</vendor>
<name>Ensemble</name>
<description overview="docs/Overview.md">Alif Semiconductor Ensemble Device Family Pack</description>
<url>https://github.com/alifsemi/alif_ensemble-cmsis-dfp/raw/main/</url>
<supportContact>support@alifsemi.com</supportContact>
<license>License.txt</license>
<releases>
<release version="2.1.0" tag="v2.1.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.1.0/AlifSemiconductor.Ensemble.2.1.0.pack" date="2025-12-19">
- Update AppKit-E8 board Support
- CH201(TOF) sensor support
- MX66 flash driver support
- APS512XXN RAM driver support
- Update various boards, examples, layers and csolution project templates
- Update SE Service to SEFWv109
- Fix trb index issue fix
- Fix SD reset issues
- Fix analog components build issue
</release>
<release version="2.0.4" tag="v2.0.4" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.0.4/AlifSemiconductor.Ensemble.2.0.4.pack" date="2025-11-04">
- Add clang compiler support
- Fix SD card and fatfs applications
- Fix CAN-FD normal mode application
- Skip redundant ISP start in snapshot mode
- Add board entry for AppKit-E8-AIML
- Handling abort mode for SPI
</release>
<release version="2.0.3" tag="v2.0.3" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.0.3/AlifSemiconductor.Ensemble.2.0.3.pack" date="2025-10-10">
- Add ISP driver and library
- IMU data precision has been updated
- Add standard camera support
- Add clang support
- HM0360 Suspend Resume support
- Add Blinky M55_HE/HP Example for DevKit-e7
</release>
<release version="2.0.2" tag="v2.0.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.0.2/AlifSemiconductor.Ensemble.2.0.2.pack" date="2025-08-11">
- Fix ospi1 rxds pinmux
- retarget_config.h in layer and example updated to reflect 2.0.0 config file version
- Fix compilation error in tz config
</release>
<release version="2.0.1" tag="v2.0.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.0.1/AlifSemiconductor.Ensemble.2.0.1.pack" date="2025-08-07">
- Update layers and examples for AppKit-E7-AIML and DevKit-E7
</release>
<release version="2.0.0" tag="v2.0.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v2.0.0/AlifSemiconductor.Ensemble.2.0.0.pack" date="2025-08-04">
- Add Cropping Support for CPI
- Update E4 SOC part Numbers
- Add High Speed mode in I2C
- Fix Code Styling and Clang formatting
- Fix compilation error with CMSIS v6.2.0
- Add Example projects for different boards
- Fix fix the fpscr and vpr offset for PM
- Use SE service call for gpio flexio config
- Fix pin assignments for E1C and E8 board
- Fix counter reading for LPTIMER
- Fix I2C HW connection comments in template
- Fix warnings and errors across DFP
- Fix default waitcycle for IS25xx
- Add E4 soc support
- remove se services init call from board_config
- Update new GPIO instances
- Update Board support Lib for E1C
- Fix board based retargeting config
- Fix testapps names
- Fix clearing untouched coordinates for touchscreen
- Updates in I2C, SPI, ADC, I3C, USART, DPHY, PDM, CMP, HWSEM, SD Drivers
- Update MRAM FLM file
- I2C Restart feature support
- LPI3C, LPI2C, LPUTIMER, instance support for E8
- OSPI HyperRAM XIP demo fixes
- SE Services updates to FWv107
- WM8904 support
- EMMC mode support in SD Driver
- BMI323 Driver support
- Board Support Library for DevKit E7, E8
- Add E8 Support
- Add E1C Support
- Restructured DFP
- Add Csolution Examples
</release>
<release version="1.3.4" tag="v1.3.4" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.4/AlifSemiconductor.Ensemble.1.3.4.pack" date="2025-05-09">
- Fix the OSPI HyperRAM XIP demo
- Fix rx transfer in UART irq handler
- Update SE host services to SE FWv105
- wm8904 driver support
- hm360 camera sensor Snapshot-mode support
- remove WA for P10_7 pinmux issue for OSPI
- add restart support and peripheral sync support to I2C
- update msg xfer method for LPI2C
</release>
<release version="1.3.3" tag="v1.3.3" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.3/AlifSemiconductor.Ensemble.1.3.3.pack" date="2025-02-25">
- Fixed SD, HWSEM App issues
- Fixed FLM Flashing
- Fixed CAN-FD build
</release>
<release version="1.3.2" tag="v1.3.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.2/AlifSemiconductor.Ensemble.1.3.2.pack" date="2025-02-13">
- Update SE services to v1.103.0
- Minor Fixes in PDSC file
</release>
<release version="1.3.1" tag="v1.3.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.1/AlifSemiconductor.Ensemble.1.3.1.pack" date="2024-10-29">
- Power off will wait till all queued data is transmitted in UART
- update se services to FWv1.101
- Build fix for LP timer as retargetting uart.
- BECP-2265 Support for OV5675 Camera Sensor
- Add LPSPI Blocking mode macro in RTE_Device.h
- Add ifdef guards for M55 SYSTEM_CLOCK
- LLVM CLang fixes - add copy and zero table handling for llvm clang builds
- Fix CMSIS_6 related Warnings
</release>
<release version="1.3.0" tag="v1.3.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.3.0/AlifSemiconductor.Ensemble.1.3.0.pack" date="2024-10-04">
- ICM42670 driver
- New component for MIPI DPHY
- Support for ILI9488 1-lane Display
- Support for AR0145 Camera Sensor
- Support for OV5647 Camera Sensor
- Updated I3C Driver
- Baremetal FATFS demo for SD
- Update SE services to v1.100.0
</release>
<release version="1.2.2" tag="v1.2.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.2/AlifSemiconductor.Ensemble.1.2.2.pack" date="2024-08-13">
- update SD Driver for various fixes
- Add emmc init sequence
- Low Capacity SD card support
</release>
<release version="1.2.1" tag="v1.2.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.1/AlifSemiconductor.Ensemble.1.2.1.pack" date="2024-06-27">
- update SE services to 1.97.0
</release>
<release version="1.2.0" tag="v1.2.0" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.2.0/AlifSemiconductor.Ensemble.1.2.0.pack" date="2024-06-19">
- CANFD Blocking mode support
- FreeRTOS test apps for DMA, I2S, ADC
- Add Support for RAW8 and RGB565 for MT9M114
- MT9M114-mipi, HM0360 Camera sensor support
- Polling mode driver for PDM, CAN-FD, I2S, LPSPI
- SDMMC Driver IRQ mode support
- Updates in DMA, SPI, I2S, UART, SD, CAN-FD driver
- Updates in UART, I2C, ADC, PM, SDC, CAN-FD applications
- Auto timing calculation for CSI
- Compiler warnings and Error Fixes
- Change SDMMC default clock to 50MHz
- Update SE services to v1.96.0
</release>
<release version="1.1.3" tag="v1.1.3" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.3/AlifSemiconductor.Ensemble.1.1.3.pack" date="2024-05-13">
- Fix FLM file format issue
- Minor updates to Demo_pm_baremetal and mhu_sender sources
- Update SE services to v1.0.94
</release>
<release version="1.1.2" tag="v1.1.2" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.2/AlifSemiconductor.Ensemble.1.1.2.pack" date="2024-04-19">
- Update SE services to v1.0.93
</release>
<release version="1.1.1" tag="v1.1.1" url="https://github.com/alifsemi/alif_ensemble-cmsis-dfp/releases/download/v1.1.1/AlifSemiconductor.Ensemble.1.1.1.pack" date="2024-03-25">
- Update SE services to v1.0.92
- Update drivers and testapps
- Rename HSCMP component as CMP
</release>
<release version="1.0.0" date="2023-11-15">
Initial release
</release>
</releases>
<keywords>
<!-- keywords for indexing -->
<keyword>Alif Semiconductor</keyword>
<keyword>Ensemble</keyword>
</keywords>
<!-- devices section : Describes Alif Semiconductor Fusion Processor SOC -->
<devices>
<!-- ******************** Alif Semiconductor Fusion Processor ******************** -->
<family Dfamily="Ensemble" Dvendor="Alif Semiconductor:165">
<!--book name="Device/AlifSemi/Documents/Arm Cortex-M55 Processor Datasheet.pdf" title="Arm Cortex-M55 Processor Datasheet"/-->
<!-- Debug configuration settings -->
<!-- Removing SDF file till MDK fixes it -->
<!--<debugconfig sdf="Boards/Alif Semiconductor/Fusion/Fusion.sdf" dormant="true"/>-->
<debugconfig dormant="true"/>
<description>
The Alif Semiconductor Ensemble family of Microcontrollers and Fusion processors are built on the latest generation embedded processing technology that scale from single Arm® Cortex-M55 MCUs to a new class of multi-core devices — fusion processors — that blend up to two Cortex-M55 MCU cores, up to two Cortex-A32 microprocessors (MPU) cores capable of running high-level operating systems, and up to two Arm Ethos-U55 microNPUs for artificial intelligence (AI) and machine learning (ML) acceleration. Ensemble family devices contain an advanced secure enclave that provides multiple layers of security, such as device integrity protection, secure identity and strong root-of-trust, secure lifecycle management, large on-chip SRAM and nonvolatile memory, accelerated graphics, imaging, and class-leading power characteristics.
</description>
<algorithm name="Flash/algorithms/Ensemble.FLM" start="0x80000000" size="0x00580000" RAMstart="0x00000000" RAMsize="0x20000" default="1"/>
<algorithm name="Flash/algorithms/Ensemble_IS25WX256.FLM" start="0xC0000000" size="0x02000000" RAMstart="0x00000000" RAMsize="0x40000" default="1"/>
<sequences>
<sequence name="DebugDeviceUnlock">
<block>
DAP_Delay(500000); // Delay for 500ms
</block>
</sequence>
<sequence name="ResetSystem">
<block>
Sequence("DisableWarmResetHandshake");
</block>
<block>
// System Control Space (SCS) offset as defined in Armv6-M/Armv7-M.
__var SCS_Addr = 0xE000E000;
__var AIRCR_Addr = SCS_Addr + 0xD0C;
__var DHCSR_Addr = SCS_Addr + 0xDF0;
// Execute SYSRESETREQ via AIRCR
Write32(AIRCR_Addr, 0x05FA0004);
</block>
<!-- Reset Recovery: Wait for DHCSR.S_RESET_ST bit to clear on read -->
<control while="(Read32(DHCSR_Addr) & 0x02000000)" timeout="500000"/>
</sequence>
</sequences>
<subFamily DsubFamily="E8">
<!-- ****************************** E8 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E8 -->
<!-- <debugconfig sdf="Debug/SDF/E8/Ensemble E8.sdf" dormant="true"/> --> <!-- disabling till SDF file is added -->
<debugconfig dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake">
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 9.75MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<compile Pname="M55_HP" Pdefine="ENSEMBLE_SOC_GEN2"/>
<compile Pname="M55_HE" Pdefine="ENSEMBLE_SOC_GEN2"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="3" name="Internal High-Speed PLL + Low Power PLL + Audio PLL"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U85"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="2" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="ComOther" n="1" name="Low Power MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI CSI"/>
<feature type="Other" n="1" name="ISP Acceleration Unit"/>
<feature type="Other" n="1" name="JPEG Encoder"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="8" name="General Purpose *Flex* I/Os, 1.8 V or 3.3 V selectable"/>
<!--Operation Range-->
<feature type="VCC" n="1.75" m="4.8"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE822FA0E5597BS0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="IOs" n="136" name="General Purpose I/Os, 1.8V"/>
<feature type="CSP" n="216" name="WLCSP Package"/>
</device>
<device Dname="AE822FA0E5597LS0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8V"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E6">
<!-- ****************************** E6 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E8 -->
<!-- <debugconfig sdf="Debug/SDF/E8/Ensemble E8.sdf" dormant="true"/> --> <!-- disabling till SDF file is added -->
<debugconfig dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 9.75MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<compile Pname="M55_HP" Pdefine="ENSEMBLE_SOC_GEN2"/>
<compile Pname="M55_HE" Pdefine="ENSEMBLE_SOC_GEN2"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="3" name="Internal High-Speed PLL + Low Power PLL + Audio PLL"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U85"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="2" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="ComOther" n="1" name="Low Power MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI CSI"/>
<feature type="Other" n="1" name="ISP Acceleration Unit"/>
<feature type="Other" n="1" name="JPEG Encoder"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="8" name="General Purpose *Flex* I/Os, 1.8 V or 3.3 V selectable"/>
<!--Operation Range-->
<feature type="VCC" n="1.75" m="4.8"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE612FA0E5597BS0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<!--debug svd="Debug/SVD/AE612FA0E5597BS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE612FA0E5597BS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/-->
<feature type="IOs" n="136" name="General Purpose I/Os, 1.8V"/>
<feature type="CSP" n="216" name="WLCSP Package"/>
</device>
<device Dname="AE612FA0E5597LS0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<!--debug svd="Debug/SVD/AE612FA0E5597LS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE612FA0E5597LS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8V"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E4">
<!-- ****************************** E4 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E4 -->
<!-- <debugconfig sdf="Debug/SDF/E4/Ensemble E4.sdf" dormant="true"/> --> <!-- disabling till SDF file is added -->
<debugconfig dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 9.75MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<compile Pname="M55_HP" Pdefine="ENSEMBLE_SOC_GEN2"/>
<compile Pname="M55_HE" Pdefine="ENSEMBLE_SOC_GEN2"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="3" name="Internal High-Speed PLL + Low Power PLL + Audio PLL"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U85"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="2" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="ComOther" n="1" name="Low Power MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" m="5000000000" name="MIPI CSI"/>
<feature type="Other" n="1" name="ISP Acceleration Unit"/>
<feature type="Other" n="1" name="JPEG Encoder"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="8" name="General Purpose *Flex* I/Os, 1.8 V or 3.3 V selectable"/>
<!--Operation Range-->
<feature type="VCC" n="1.75" m="4.8"/>
<feature type="Temp" n="-40" m="85"/>
<device Dname="AE402FA0E5597BE0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="IOs" n="136" name="General Purpose I/Os, 1.8V"/>
<feature type="CSP" n="216" name="WLCSP Package"/>
</device>
<device Dname="AE402FA0E5597LE0">
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE822FA0E5597BS0_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8V"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E7">
<!-- ****************************** E7 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E7 -->
<debugconfig sdf="Debug/SDF/E7/Ensemble E7.sdf" dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 13.5MB-->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- On-Chip RAM Aliases -->
<memory name="ITCM_HP" start="0x00000000" size="0x00040000" access="rwx" alias="SRAM2" Pname="M55_HP"/>
<memory name="DTCM_HP" start="0x20000000" size="0x00100000" access="rwx" alias="SRAM3" Pname="M55_HP"/>
<memory name="ITCM_HE" start="0x00000000" size="0x00040000" access="rwx" alias="SRAM4" Pname="M55_HE"/>
<memory name="DTCM_HE" start="0x20000000" size="0x00040000" access="rwx" alias="SRAM5" Pname="M55_HE"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0005" title="E7 Datasheet"/>
<book name="https://alifsemi.com/download/AHRM0005" title="E7 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE722F80F55D5AS">
<compile Pname="M55_HP" Pdefine="AE722F80F55D5"/>
<compile Pname="M55_HE" Pdefine="AE722F80F55D5"/>
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE722F80F55D5AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE722F80F55D5AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE722F80F55D5LS">
<compile Pname="M55_HP" Pdefine="AE722F80F55D5"/>
<compile Pname="M55_HE" Pdefine="AE722F80F55D5"/>
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE722F80F55D5LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE722F80F55D5LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E5">
<!-- ****************************** E5 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<!-- DebugConfig for E5 -->
<debugconfig sdf="Debug/SDF/E5/Ensemble E5.sdf" dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0006" title="E5 Datasheet"/>
<book name="https://alifsemi.com/download/AHRM0006" title="E5 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="75"/>
<device Dname="AE512F80F55D5AS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 13.5MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE512F80F55D5AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F55D5AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE512F80F5582AS">
<!--On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE512F80F5582AS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F5582AS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
</device>
<device Dname="AE512F80F55D5LS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 13.5MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE512F80F55D5LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F55D5LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
<device Dname="AE512F80F5582LS">
<book name="https://www.alifsemi.com/download/2022" title="E5/C5 Datasheet"/>
<!-- On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<!-- processor & Compile headers-->
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE512F80F5582LS_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE512F80F5582LS_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="BGA" n="194" name="FBGA Package"/>
</device>
</subFamily>
<subFamily DsubFamily="E3">
<!-- ****************************** E3 ******************************* -->
<!-- Device processor attributes -->
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="400000000" Pname="M55_HP"/>
<processor Dcore="Cortex-M55" DcoreVersion="r1p0" Dfpu="DP_FPU" Dmpu="MPU" Dmve="FP_MVE" Ddsp="DSP" Dtz="TZ" Dendian="Little-endian" Dclock="160000000" Pname="M55_HE"/>
<compile Pname="M55_HP" Pdefine="RTSS_HP"/>
<compile Pname="M55_HE" Pdefine="RTSS_HE"/>
<!-- Cortex-M55 Access Ports -->
<accessportV2 __apid="0" address="0x00200000"/>
<accessportV2 __apid="1" address="0x00300000"/>
<!-- Documents -->
<book name="https://alifsemi.com/download/ADTS0007" title="E3 Datasheet"/>
<book name="https://alifsemi.com/download/AERR0007" title="E3 Errata and Specification Changes"/>
<book name="https://alifsemi.com/download/AHRM0007" title="E3 Hardware Reference Manual"/>
<book name="https://alifsemi.com/download/ASRM0001" title="Software Reference Manual"/>
<!-- Device properties, header files and preprocessor defines -->
<feature type="XTAL" n="38400000" name="High-Frequency Crystal Oscillator"/>
<feature type="IntRC" n="76800000" name="High-Frequency Internal RC Oscillator"/>
<feature type="PLL" n="1" name="Internal PLL with 3 clock outputs"/>
<feature type="PowerMode" n="5" name="GO, READY, IDLE, STANDBY, STOP"/>
<feature type="PowerOther" n="1" name="POR"/>
<feature type="PowerOther" n="1" name="BOR"/>
<!--Security-->
<feature type="CoreOther" n="1" name="Full Secure Enclave"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HE"/>
<feature type="CoreOther" n="2" name="CRC Calculation Unit"/>
<!--External Memory-->
<feature type="ComOther" n="2" name="Cryptographic Octal SPI (OSPI)"/>
<feature type="SDIO" n="1" m="8" name="SD/eMMC/SDIO Interface"/>
<!-- Serial Connectivity -->
<feature type="UART" n="8" m="2500000" name="UART Interface"/>
<feature type="UART" n="1" m="1000000" name="Low Power UART Interface"/>
<feature type="SPI" n="4" m="50000000" name="SPI Interface"/>
<feature type="SPI" n="1" m="20000000" name="Low Power SPI Interface"/>
<feature type="I2C" n="4" name="Inter-Integrated Circuit (I2C)"/>
<feature type="I2C" n="1" name="Low Power Inter-Integrated Circuit (LPI2C)"/>
<feature type="ComOther" n="1" name="MIPI I3C"/>
<!--High Speed Connectivity-->
<feature type="USBOTG" n="1" name="USB 2.0 Host and Device (DRD) with PHY"/>
<feature type="ETH" n="1" m="100000000" name="Ethernet Media Access Controller (ETH)"/>
<!--Graphics-->
<feature type="Other" n="1" name="2D Graphics Processing Unit (GPU2D)"/>
<!--Display-->
<feature type="GLCD" n="1" m="1280.800" name="Display Parallel Interface"/>
<feature type="Other" n="1" name="MIPI DSI"/>
<!--Camera-->
<feature type="Camera" n="1" m="16" name="Camera Parallel Interface"/>
<feature type="Camera" n="1" m="8" name="Low Power Camera Parallel Interface"/>
<feature type="Other" n="1" name="MIPI CSI-2"/>
<!--Audio-->
<feature type="I2S" n="4" name="Inter-IC Sound (I2S)"/>
<feature type="I2S" n="1" name="Low Power Inter-IC Sound (I2S)"/>
<feature type="ComOther" n="1" m="8" name="Pulse Density Modulation (PDM) Microphone Interface"/>
<feature type="ComOther" n="1" m="8" name="Low Power Pulse Density Modulation (LPPDM) Microphone Interface"/>
<!--Timers-->
<feature type="Timer" n="12" m="32" name="Universal Timer"/>
<feature type="Timer" n="4" m="32" name="Low Power Timer"/>
<feature type="TimerOther" n="4" m="32" name="Quadrature Encoding Counter"/>
<feature type="TimerOther" n="1" m="32" name="Real-Time Counter"/>
<feature type="WDT" n="1" name="Local Watchdog Timer"/>
<!-- Analog -->
<feature type="TempSens" n="1" name="Temperature Sensor"/>
<feature type="ADC" n="3" m="12" name="6 Single-ended or 3 Differential Input ADC, SAR"/>
<feature type="ADC" n="1" m="24" name="4 Differential Input ADC, Sigma-Delta"/>
<feature type="DAC" n="2" m="12" name="Digital-to-Analog Converter"/>
<feature type="AnalogOther" n="4" name="High-Speed Comparator"/>
<feature type="AnalogOther" n="1" name="Low Power Comparator"/>
<!--GPIO-->
<feature type="IOs" n="120" name="General Purpose I/Os, 1.8 V tolerant"/>
<feature type="IOs" n="8" name="General Purpose Flex I/Os, selectable 1.8 V or 3.3 V tolerant"/>
<!--Operation Range-->
<feature type="VCC" n="1.71" m="4.2"/>
<feature type="Temp" n="-40" m="85"/>
<device Dname="AE302F80F55D5AE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 13.5 MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM4" start="0x58000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM5" start="0x58800000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM6_A" start="0x62000000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM6_B" start="0x62400000" size="0x00100000" access="rwx" default="1"/>
<memory name="SRAM7" start="0x63000000" size="0x00080000" access="rwx" default="1"/>
<memory name="SRAM8" start="0x63200000" size="0x00200000" access="rwx" default="1"/>
<memory name="SRAM9" start="0x60000000" size="0x000C0000" access="rwx" default="1"/>
<compile Pname="M55_HP" header="Device/core/common/include/alif.h" define="RTSS_HP"/>
<compile Pname="M55_HE" header="Device/core/common/include/alif.h" define="RTSS_HE"/>
<debug svd="Debug/SVD/AE302F80F55D5AE_CM55_HP_View.svd" Pname="M55_HP" __apid="0"/>
<debug svd="Debug/SVD/AE302F80F55D5AE_CM55_HE_View.svd" Pname="M55_HE" __apid="1"/>
<feature type="CSP" n="208" name="WLCSP Package"/>
<feature type="CoreOther" n="1" name="Neural Processing Unit (NPU) Ethos-U55 HP"/>
<feature type="CAN" n="1" name="CAN-FD Controller"/>
</device>
<device Dname="AE302F80F5582AE">
<!-- DebugConfig for E3 -->
<debugconfig sdf="Debug/SDF/E3/Ensemble E3.sdf" dormant="true"/>
<!-- Debug sequences -->
<sequences>
<sequence name="DisableWarmResetHandshake" Pname="M55_HP">
<block>
Write32(0x1A600024, 0);
</block>
</sequence>
<sequence name="DisableWarmResetHandshake" Pname="M55_HE">
<block>
Write32(0x1A601024, 0);
</block>
</sequence>
</sequences>
<!-- On-chip NVM Region -->
<memory name="MRAM" start="0x80000000" size="0x00580000" access="rx" default="1"/>
<!-- On-Chip RAM Regions 8.25MB -->
<memory name="SRAM0" start="0x02000000" size="0x00400000" access="rwx" default="1"/>
<memory name="SRAM1" start="0x08000000" size="0x00280000" access="rwx" default="1"/>
<memory name="SRAM2" start="0x50000000" size="0x00040000" access="rwx" default="1"/>
<memory name="SRAM3" start="0x50800000" size="0x00100000" access="rwx" default="1"/>