From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- docs/Zone/html/format_processor.html | 171 +++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 docs/Zone/html/format_processor.html (limited to 'docs/Zone/html/format_processor.html') diff --git a/docs/Zone/html/format_processor.html b/docs/Zone/html/format_processor.html new file mode 100644 index 0000000..577ef84 --- /dev/null +++ b/docs/Zone/html/format_processor.html @@ -0,0 +1,171 @@ + + + + + +/processor element +CMSIS-Zone (Preview): /processor element + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Zone (Preview) +  Version 0.0.1 +
+
System Resource Management
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
/processor element
+
+
+

The processor element is used to define the processing elements integration on a device.

+

Example

+
<processor Pname="Cortex-M4" Dclock="168000000" Dcore="Cortex-M4" DcoreVersion="r0p1" Dendian="Little-endian" Dfpu="SP_FPU" Dmpu="MPU" Dtz="NO_TZ">
+
<memory_map>
+
<!-- Logical address alias to access integrated SRAM -->
+
<memory name="CODE_SRAM" alias="SRAM" start="0x00000000"/>
+
:
+
</memory_map>
+
:
+
</processor>
+

Schema Description

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Parent Element Element Chain
device /device element
Attributes Description Type Use
Pname Processor identifier. This attribute is mandatory for devices that embed multiple processors. Each processor needs a per device unique identifier and must be used consistently in the Pname attribute. Only alphabetical characters, decimal digits, '-' and '_' are allowed. RestrictedString optional
Dcore Specifies the processor core. DcoreEnum optional
Dfpu Specifies whether a hardware Floating Point Unit is present in the processor. DfpuEnum optional
Dmpu Specifies whether a Memory Protection Unit is present in the processor. DmpuEnum optional
Dtz Specifies whether an Armv8-M based device implements TrustZone. DtzEnum optional
Ddsp Specifies whether an Armv8-M based device supports the DSP instructions set. DdspEnum optional
Dendian Specifies the endianess of the processor. DendianEnum optional
Dclock Specifies the max clock frequency of the processor subsystem xs:unsignedInt optional
DcoreVersion Hardware revision of the processor core xs:string required
info Brief description of the processor. xs:string optional
Child Elements Description Type Occurrence
memory_map Processor specific (non-uniform) memory map. The effective memory map of the processor is derived as the union of device and processor level mappings. complexType 0..1
+
+
+ + + + -- cgit