Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
| 3 | <!-- File naming: <vendor>_<part/series name>.svd --> |
| 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 | |
| 36 | <device schemaVersion="1.3" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="CMSIS-SVD.xsd" > |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 37 | <vendor>ARM Ltd.</vendor> <!-- device vendor name --> |
| 38 | <vendorID>ARM</vendorID> <!-- device vendor short name --> |
| 39 | <name>ARMCM7</name> <!-- name of part--> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 40 | <series>ARM Cortex M7</series> <!-- device series the device belongs to --> |
| 41 | <version>1.0</version> <!-- version of this description, adding CMSIS-SVD 1.1 tags --> |
| 42 | <description>ARM 32-bit Cortex-M7 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 --> |
| 57 | <name>CM7</name> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 58 | <revision>r1p1</revision> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 59 | <endian>little</endian> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 60 | <mpuPresent>true</mpuPresent> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 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> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 65 | <icachePresent>true</icachePresent> |
| 66 | <dcachePresent>true</dcachePresent> |
| 67 | <itcmPresent>false</itcmPresent> |
| 68 | <dtcmPresent>false</dtcmPresent> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 69 | </cpu> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame] | 70 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 71 | <addressUnitBits>8</addressUnitBits> <!-- byte addressable memory --> |
| 72 | <width>32</width> <!-- bus width is 32 bits --> |
| 73 | <!-- default settings implicitly inherited by subsequent sections --> |
| 74 | <size>32</size> <!-- this is the default size (number of bits) of all peripherals |
| 75 | and register that do not define "size" themselves --> |
| 76 | <access>read-write</access> <!-- default access permission for all subsequent registers --> |
| 77 | <resetValue>0x00000000</resetValue> <!-- by default all bits of the registers are initialized to 0 on reset --> |
| 78 | <resetMask>0xFFFFFFFF</resetMask> <!-- by default all 32Bits of the registers are used --> |
| 79 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 80 | </device> |