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 --> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame^] | 39 | <name>ARMCM0P</name> <!-- name of part--> |
| 40 | <series>ARM Cortex M0+</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-M0+ 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>CM0+</name> |
| 58 | <revision>r0p0</revision> |
| 59 | <endian>little</endian> |
| 60 | <mpuPresent>false</mpuPresent> |
| 61 | <fpuPresent>false</fpuPresent> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame^] | 62 | <vtorPresent>false</vtorPresent> |
| 63 | <nvicPrioBits>2</nvicPrioBits> |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 64 | <vendorSystickConfig>false</vendorSystickConfig> |
| 65 | </cpu> |
GuentherMartin | 9d12a19 | 2018-07-17 10:01:43 +0200 | [diff] [blame^] | 66 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 67 | <addressUnitBits>8</addressUnitBits> <!-- byte addressable memory --> |
| 68 | <width>32</width> <!-- bus width is 32 bits --> |
| 69 | <!-- default settings implicitly inherited by subsequent sections --> |
| 70 | <size>32</size> <!-- this is the default size (number of bits) of all peripherals |
| 71 | and register that do not define "size" themselves --> |
| 72 | <access>read-write</access> <!-- default access permission for all subsequent registers --> |
| 73 | <resetValue>0x00000000</resetValue> <!-- by default all bits of the registers are initialized to 0 on reset --> |
| 74 | <resetMask>0xFFFFFFFF</resetMask> <!-- by default all 32Bits of the registers are used --> |
| 75 | |
Martin Günther | 1e56003 | 2016-04-08 10:56:27 +0200 | [diff] [blame] | 76 | </device> |