aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2020-10-01 18:58:19 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2020-10-01 18:28:02 +0000
commit10e3343e4e459e0233a24b6b90ae9b294f674817 (patch)
tree2368fad396dd2005ea41102216e54fb4d29a6966 /examples
parentcdc38bc70d42c0f10be5846323d86477e93abe13 (diff)
baremetal: Add support for IAR toolchain to 'pca10040' example
Change-Id: I78ba146f349018f77285e0fd5957fc49bfc03794 Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/baremetal/pca10040/greenblink/README.md1
-rw-r--r--examples/baremetal/pca10040/greenblink/greenblink.qbs33
-rw-r--r--examples/baremetal/pca10040/greenblink/iar/flash.icf102
-rw-r--r--examples/baremetal/pca10040/greenblink/iar/startup.s202
4 files changed, 338 insertions, 0 deletions
diff --git a/examples/baremetal/pca10040/greenblink/README.md b/examples/baremetal/pca10040/greenblink/README.md
index 8b08365f8..7d759839b 100644
--- a/examples/baremetal/pca10040/greenblink/README.md
+++ b/examples/baremetal/pca10040/greenblink/README.md
@@ -6,4 +6,5 @@ LED on the board.
The following toolchains are supported:
* GNU Arm Embedded Toolchain
+ * IAR Embedded Workbench
* KEIL Microcontroller Development Kit
diff --git a/examples/baremetal/pca10040/greenblink/greenblink.qbs b/examples/baremetal/pca10040/greenblink/greenblink.qbs
index 6dd0bc866..dcf9c388f 100644
--- a/examples/baremetal/pca10040/greenblink/greenblink.qbs
+++ b/examples/baremetal/pca10040/greenblink/greenblink.qbs
@@ -55,6 +55,7 @@ CppApplication {
if (!qbs.architecture.startsWith("arm"))
return false;
return (qbs.toolchain.contains("gcc")
+ || qbs.toolchain.contains("iar")
|| qbs.toolchain.contains("keil"))
&& !qbs.toolchain.contains("xcode")
}
@@ -98,6 +99,38 @@ CppApplication {
}
//
+ // IAR-specific properties and sources.
+ //
+
+ Properties {
+ condition: qbs.toolchain.contains("iar")
+ cpp.assemblerFlags: [
+ "--cpu", "cortex-m4",
+ "--fpu", "vfpv4_sp"
+ ]
+ cpp.driverFlags: [
+ "--cpu", "cortex-m4",
+ "--fpu", "vfpv4_sp"
+ ]
+ }
+
+ Group {
+ condition: qbs.toolchain.contains("iar")
+ name: "IAR"
+ prefix: "iar/"
+ Group {
+ name: "Startup"
+ fileTags: ["asm"]
+ files: ["startup.s"]
+ }
+ Group {
+ name: "Linker Script"
+ fileTags: ["linkerscript"]
+ files: ["flash.icf"]
+ }
+ }
+
+ //
// KEIL-specific properties and sources.
//
diff --git a/examples/baremetal/pca10040/greenblink/iar/flash.icf b/examples/baremetal/pca10040/greenblink/iar/flash.icf
new file mode 100644
index 000000000..d19640293
--- /dev/null
+++ b/examples/baremetal/pca10040/greenblink/iar/flash.icf
@@ -0,0 +1,102 @@
+/****************************************************************************
+**
+** Copyright (C) 2020 Denis Shienkov <denis.shienkov@gmail.com>
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the examples of Qbs.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of The Qt Company Ltd nor the names of its
+** contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+define symbol _start_of_intvec_section = 0x00000000;
+
+define symbol _start_of_irom1_section = 0x00000000;
+define symbol _end_of_irom1_section = 0x0007FFFF;
+define symbol _start_of_irom2_section = 0x0;
+define symbol _end_of_irom2_section = 0x0;
+define symbol _start_of_erom1_section = 0x0;
+define symbol _end_of_erom1_section = 0x0;
+define symbol _start_of_erom2_section = 0x0;
+define symbol _end_of_erom2_section = 0x0;
+define symbol _start_of_erom3_section = 0x0;
+define symbol _end_of_erom3_section = 0x0;
+define symbol _start_of_iram1_section = 0x20000000;
+define symbol _end_of_iram1_section = 0x2000FFFF;
+define symbol _start_of_iram2_section = 0x0;
+define symbol _end_of_iram2_section = 0x0;
+define symbol _start_of_eram1_section = 0x0;
+define symbol _end_of_eram1_section = 0x0;
+define symbol _start_of_eram2_section = 0x0;
+define symbol _end_of_eram2_section = 0x0;
+define symbol _start_of_eram3_section = 0x0;
+define symbol _end_of_eram3_section = 0x0;
+
+define symbol _min_stack_size = 0x2000;
+define symbol _min_proc_stack_size = 0x0;
+define symbol _min_heap_size = 0x2000;
+
+define memory mem with size = 4G;
+define region irom_section = mem:[from _start_of_irom1_section to _end_of_irom1_section]
+ | mem:[from _start_of_irom2_section to _end_of_irom2_section];
+define region erom_section = mem:[from _start_of_erom1_section to _end_of_erom1_section]
+ | mem:[from _start_of_erom2_section to _end_of_erom2_section]
+ | mem:[from _start_of_erom3_section to _end_of_erom3_section];
+define region iram_section = mem:[from _start_of_iram1_section to _end_of_iram1_section]
+ | mem:[from _start_of_iram2_section to _end_of_iram2_section];
+define region eram_section = mem:[from _start_of_eram1_section to _end_of_eram1_section]
+ | mem:[from _start_of_eram2_section to _end_of_eram2_section]
+ | mem:[from _start_of_eram3_section to _end_of_eram3_section];
+
+
+define block CSTACK with alignment = 8, size = _min_stack_size { };
+define block PROC_STACK with alignment = 8, size = _min_proc_stack_size { };
+define block HEAP with alignment = 8, size = _min_heap_size { };
+
+initialize by copy { readwrite };
+
+place at address mem:_start_of_intvec_section { readonly section .intvec };
+
+place in irom_section { readonly };
+place in erom_section { readonly section application_specific_ro };
+place in iram_section { readwrite, block CSTACK, block HEAP, block PROC_STACK };
+place in eram_section { readwrite section application_specific_rw };
diff --git a/examples/baremetal/pca10040/greenblink/iar/startup.s b/examples/baremetal/pca10040/greenblink/iar/startup.s
new file mode 100644
index 000000000..209322ac0
--- /dev/null
+++ b/examples/baremetal/pca10040/greenblink/iar/startup.s
@@ -0,0 +1,202 @@
+/****************************************************************************
+**
+** Copyright (C) 2020 Denis Shienkov <denis.shienkov@gmail.com>
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the examples of Qbs.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of The Qt Company Ltd nor the names of its
+** contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+ MODULE ?cstartup
+
+ SECTION CSTACK:DATA:NOROOT(3)
+ SECTION .intvec:CODE:NOROOT(2)
+
+ EXTERN __iar_program_start
+
+ PUBLIC _vectors_table
+ DATA
+
+_vectors_table
+ ;; Generic interrupts offset.
+ DCD sfe(CSTACK) ; Initial stack pointer value.
+ DCD reset_handler ; Reset.
+ DCD 0 ; NMI.
+ DCD 0 ; Hard fault.
+ DCD 0 ; Memory management fault.
+ DCD 0 ; Bus fault.
+ DCD 0 ; Usage fault.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; SVC.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; PendSV.
+ DCD 0 ; SysTick.
+ ;; External interrupts offset.
+ DCD 0 ; POWER CLOCK.
+ DCD 0 ; RADIO.
+ DCD 0 ; UARTE0/UART0
+ DCD 0 ; SPIM0/SPIS0/TWIM0/TWIS0/SPI0/TWI0.
+ DCD 0 ; SPIM1/SPIS1/TWIM1/TWIS1/SPI1/TWI1.
+ DCD 0 ; NFCT.
+ DCD 0 ; GPIOTE.
+ DCD 0 ; SAADC.
+ DCD 0 ; TIMER0.
+ DCD 0 ; TIMER1.
+ DCD 0 ; TIMER2.
+ DCD 0 ; RTC0.
+ DCD 0 ; TEMP.
+ DCD 0 ; RNG.
+ DCD 0 ; ECB.
+ DCD 0 ; CCM_AAR.
+ DCD 0 ; WDT.
+ DCD 0 ; RTC1.
+ DCD 0 ; QDEC.
+ DCD 0 ; COMP_LPCOMP.
+ DCD 0 ; SWI0_EGU0.
+ DCD 0 ; SWI1_EGU1.
+ DCD 0 ; SWI2_EGU2.
+ DCD 0 ; SWI3_EGU3.
+ DCD 0 ; SWI4_EGU4.
+ DCD 0 ; SWI5_EGU5.
+ DCD 0 ; TIMER3.
+ DCD 0 ; TIMER4.
+ DCD 0 ; PWM0.
+ DCD 0 ; PDM.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; MWU.
+ DCD 0 ; PWM1.
+ DCD 0 ; PWM2.
+ DCD 0 ; SPIM2/SPIS2/SPI2.
+ DCD 0 ; RTC2.
+ DCD 0 ; I2S.
+ DCD 0 ; FPU.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+ DCD 0 ; Reserved.
+
+ ;; Reset handler.
+ THUMB
+ PUBWEAK reset_handler
+ SECTION .text:CODE:REORDER:NOROOT(2)
+reset_handler
+ BLX R0
+ LDR R0, =__iar_program_start
+ BX R0
+
+ END