Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 3 | <!-- File naming: <vendor>_<part/series name>.svd --> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 4 | |
| 5 | <!-- |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 6 | Copyright (C) 2012 - 2018 Arm Limited. All rights reserved. |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 7 | |
| 8 | Purpose: System Viewer Description (SVD) Example (Schema Version 1.1) |
| 9 | This is a description of a none-existent and incomplete device |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 10 | for demonstration purposes only. |
| 11 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 12 | Redistribution and use in source and binary forms, with or without |
| 13 | modification, are permitted provided that the following conditions are met: |
| 14 | - Redistributions of source code must retain the above copyright |
| 15 | notice, this list of conditions and the following disclaimer. |
| 16 | - Redistributions in binary form must reproduce the above copyright |
| 17 | notice, this list of conditions and the following disclaimer in the |
| 18 | documentation and/or other materials provided with the distribution. |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 19 | - Neither the name of ARM nor the names of its contributors may be used |
| 20 | to endorse or promote products derived from this software without |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 21 | specific prior written permission. |
| 22 | |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 23 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 24 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 25 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 26 | ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE |
| 27 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 28 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 29 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 30 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 31 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 32 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 33 | POSSIBILITY OF SUCH DAMAGE. |
| 34 | --> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 35 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 36 | <device schemaVersion="1.3" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="CMSIS-SVD.xsd" > |
| 37 | <vendor>ARM Ltd.</vendor> <!-- device vendor name --> |
| 38 | <vendorID>ARM</vendorID> <!-- device vendor short name --> |
| 39 | <name>ARMv8MML</name> <!-- name of part--> |
| 40 | <series>ARMV8M</series> <!-- device series the device belongs to --> |
| 41 | <version>1.0</version> <!-- version of this description, adding CMSIS-SVD 1.1 tags --> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 42 | <description>ARM 32-bit v8-M Baseline based device.</description> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 43 | <licenseText> <!-- this license text will appear in header file. \n force line breaks --> |
| 44 | ARM Limited (ARM) is supplying this software for use with Cortex-M\n |
| 45 | processor based microcontroller, but can be equally used for other\n |
| 46 | suitable processor architectures. This file can be freely distributed.\n |
| 47 | Modifications to this file shall be clearly marked.\n |
| 48 | \n |
| 49 | THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\n |
| 50 | OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\n |
| 51 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\n |
| 52 | ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\n |
| 53 | CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
| 54 | </licenseText> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 55 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 56 | <cpu> <!-- details about the cpu embedded in the device --> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 57 | <name>ARMV8MML</name> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 58 | <revision>r0p0</revision> |
| 59 | <endian>little</endian> |
| 60 | <mpuPresent>true</mpuPresent> |
| 61 | <fpuPresent>false</fpuPresent> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 62 | <vtorPresent>true</vtorPresent> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 63 | <nvicPrioBits>3</nvicPrioBits> |
| 64 | <vendorSystickConfig>false</vendorSystickConfig> |
| 65 | <sauNumRegions>4</sauNumRegions> |
| 66 | <sauRegionsConfig enabled="true" protectionWhenDisabled="s"> |
| 67 | <region enabled="true" name="SauRegion0"> |
| 68 | <base>0x00000000</base> |
| 69 | <limit>0x001FFFE0</limit> |
| 70 | <!-- secure / non-secure callable --> |
| 71 | <access>c</access> |
| 72 | </region> |
| 73 | <region enabled="true" name="SauRegion1"> |
| 74 | <base>0x00200000</base> |
| 75 | <limit>0x003FFFE0</limit> |
| 76 | <!-- non-secure --> |
| 77 | <access>n</access> |
| 78 | </region> |
| 79 | <region enabled="true" name="SauRegion2"> |
| 80 | <base>0x20200000</base> |
| 81 | <limit>0x203FFFE0</limit> |
| 82 | <!-- non-secure --> |
| 83 | <access>n</access> |
| 84 | </region> |
| 85 | <region enabled="true" name="SauRegion3"> |
| 86 | <base>0x40000000</base> |
| 87 | <limit>0x40040000</limit> |
| 88 | <!-- non-secure --> |
| 89 | <access>n</access> |
| 90 | </region> |
| 91 | </sauRegionsConfig> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 92 | </cpu> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 93 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 94 | <addressUnitBits>8</addressUnitBits> <!-- byte addressable memory --> |
| 95 | <width>32</width> <!-- bus width is 32 bits --> |
| 96 | <!-- default settings implicitly inherited by subsequent sections --> |
| 97 | <size>32</size> <!-- this is the default size (number of bits) of all peripherals |
| 98 | and register that do not define "size" themselves --> |
| 99 | <access>read-write</access> <!-- default access permission for all subsequent registers --> |
| 100 | <resetValue>0x00000000</resetValue> <!-- by default all bits of the registers are initialized to 0 on reset --> |
| 101 | <resetMask>0xFFFFFFFF</resetMask> <!-- by default all 32Bits of the registers are used --> |
| 102 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 103 | </device> |