blob: ff62fd464f4c51deb9c9cd739e54103d63b96cc8 [file] [log] [blame]
Martin Günther1e560032016-04-08 10:56:27 +02001<?xml version="1.0" encoding="utf-8"?>
2
3<!-- File naming: <vendor>_<part/series name>.svd -->
4
5<!--
GuentherMartin9d12a192018-07-17 10:01:43 +02006 Copyright (C) 2012 - 2018 Arm Limited. All rights reserved.
Martin Günther1e560032016-04-08 10:56:27 +02007
8 Purpose: System Viewer Description (SVD) Example (Schema Version 1.1)
9 This is a description of a none-existent and incomplete device
GuentherMartin9d12a192018-07-17 10:01:43 +020010 for demonstration purposes only.
11
Martin Günther1e560032016-04-08 10:56:27 +020012 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.
GuentherMartin9d12a192018-07-17 10:01:43 +020019 - 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ünther1e560032016-04-08 10:56:27 +020021 specific prior written permission.
22
GuentherMartin9d12a192018-07-17 10:01:43 +020023 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ünther1e560032016-04-08 10:56:27 +020025 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
GuentherMartin9d12a192018-07-17 10:01:43 +020028 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ünther1e560032016-04-08 10:56:27 +020032 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 POSSIBILITY OF SUCH DAMAGE.
34 -->
GuentherMartin9d12a192018-07-17 10:01:43 +020035
36<device schemaVersion="1.3" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="CMSIS-SVD.xsd" >
Martin Günther1e560032016-04-08 10:56:27 +020037 <vendor>ARM Ltd.</vendor> <!-- device vendor name -->
38 <vendorID>ARM</vendorID> <!-- device vendor short name -->
GuentherMartin9d12a192018-07-17 10:01:43 +020039 <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ünther1e560032016-04-08 10:56:27 +020043 <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>
GuentherMartin9d12a192018-07-17 10:01:43 +020055
Martin Günther1e560032016-04-08 10:56:27 +020056 <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>
GuentherMartin9d12a192018-07-17 10:01:43 +020062 <vtorPresent>false</vtorPresent>
63 <nvicPrioBits>2</nvicPrioBits>
Martin Günther1e560032016-04-08 10:56:27 +020064 <vendorSystickConfig>false</vendorSystickConfig>
65 </cpu>
GuentherMartin9d12a192018-07-17 10:01:43 +020066
Martin Günther1e560032016-04-08 10:56:27 +020067 <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ünther1e560032016-04-08 10:56:27 +020076</device>