aboutsummaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorAnton Eltchaninov <anton.eltchaninov@gmail.com>2012-04-26 11:17:40 +0700
committerMarti Bolivar <mbolivar@leaflabs.com>2012-05-03 14:09:05 -0400
commita81a02257d69454412d4ef062b56a3cc5c758815 (patch)
treef8d9fc43d4f85efb6542235713cf7a931bdb0f26 /support
parent6ae19973da18ae67db0f0495c6b3cdf44797e2c8 (diff)
downloadlibrambutan-a81a02257d69454412d4ef062b56a3cc5c758815.tar.gz
librambutan-a81a02257d69454412d4ef062b56a3cc5c758815.zip
STM32VLDiscovery support files
Signed-off-by: Anton Eltchaninov <anton.eltchaninov@gmail.com> Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'support')
-rw-r--r--support/ld/VLDiscovery/flash.ld24
-rw-r--r--support/ld/VLDiscovery/jtag.ld24
-rw-r--r--support/ld/VLDiscovery/ram.ld22
-rw-r--r--support/make/board-includes/VLDiscovery.mk5
4 files changed, 75 insertions, 0 deletions
diff --git a/support/ld/VLDiscovery/flash.ld b/support/ld/VLDiscovery/flash.ld
new file mode 100644
index 0000000..44ff8a1
--- /dev/null
+++ b/support/ld/VLDiscovery/flash.ld
@@ -0,0 +1,24 @@
+/*
+ * VLDiscovery (STM32F100RBT6, medium density) linker script for Flash builds.
+ */
+
+/*
+ * Define memory spaces.
+ */
+MEMORY
+{
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 8K
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
+}
+
+REGION_ALIAS("REGION_TEXT", rom);
+REGION_ALIAS("REGION_DATA", ram);
+REGION_ALIAS("REGION_BSS", ram);
+REGION_ALIAS("REGION_RODATA", rom);
+
+/*
+ * Define the rest of the sections
+ */
+_FLASH_BUILD = 1;
+
+INCLUDE common.inc
diff --git a/support/ld/VLDiscovery/jtag.ld b/support/ld/VLDiscovery/jtag.ld
new file mode 100644
index 0000000..b952572
--- /dev/null
+++ b/support/ld/VLDiscovery/jtag.ld
@@ -0,0 +1,24 @@
+/*
+ * VLDiscovery (STM32F100RBT6, medium density) linker script for JTAG (bare
+ * metal, no bootloader) builds.
+ */
+
+/*
+ * Define memory spaces.
+ */
+MEMORY
+{
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 8K
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
+}
+
+REGION_ALIAS("REGION_TEXT", rom);
+REGION_ALIAS("REGION_DATA", ram);
+REGION_ALIAS("REGION_BSS", ram);
+REGION_ALIAS("REGION_RODATA", rom);
+
+/*
+ * Define the rest of the sections
+ */
+_FLASH_BUILD = 1;
+INCLUDE common.inc
diff --git a/support/ld/VLDiscovery/ram.ld b/support/ld/VLDiscovery/ram.ld
new file mode 100644
index 0000000..d659cd6
--- /dev/null
+++ b/support/ld/VLDiscovery/ram.ld
@@ -0,0 +1,22 @@
+/*
+ * VLDiscovery (STM32F100RBT6, medium density) linker script for RAM builds.
+ */
+
+/*
+ * Define memory spaces.
+ */
+MEMORY
+{
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 8K
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 0K
+}
+
+REGION_ALIAS("REGION_TEXT", ram);
+REGION_ALIAS("REGION_DATA", ram);
+REGION_ALIAS("REGION_BSS", ram);
+REGION_ALIAS("REGION_RODATA", ram);
+
+/*
+ * Define the rest of the sections
+ */
+INCLUDE common.inc
diff --git a/support/make/board-includes/VLDiscovery.mk b/support/make/board-includes/VLDiscovery.mk
new file mode 100644
index 0000000..82d1b23
--- /dev/null
+++ b/support/make/board-includes/VLDiscovery.mk
@@ -0,0 +1,5 @@
+MCU := STM32F100RB
+PRODUCT_ID := 0003
+ERROR_LED_PORT := GPIOC
+ERROR_LED_PIN := 9
+MCU_SERIES := stm32f1