qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

STM32F103x8_0x08006000_bootloader.ld (2991B)


      1 /*
      2     ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio
      3 
      4     Licensed under the Apache License, Version 2.0 (the "License");
      5     you may not use this file except in compliance with the License.
      6     You may obtain a copy of the License at
      7 
      8         http://www.apache.org/licenses/LICENSE-2.0
      9 
     10     Unless required by applicable law or agreed to in writing, software
     11     distributed under the License is distributed on an "AS IS" BASIS,
     12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13     See the License for the specific language governing permissions and
     14     limitations under the License.
     15 */
     16 
     17 /*
     18  * STM32F103x8 memory setup for use with the STM32Duino bootloader.
     19  */
     20 f103_flash_size = 128k;
     21 
     22 MEMORY
     23 {
     24     /*Here we give 22K flash to bootloader*/
     25     /*0x08005800 : the application bin start address*/
     26     flash0  : org = 0x08006000, len = f103_flash_size - 0x6000
     27     flash1  : org = 0x00000000, len = 0
     28     flash2  : org = 0x00000000, len = 0
     29     flash3  : org = 0x00000000, len = 0
     30     flash4  : org = 0x00000000, len = 0
     31     flash5  : org = 0x00000000, len = 0
     32     flash6  : org = 0x00000000, len = 0
     33     flash7  : org = 0x00000000, len = 0
     34     ram0    : org = 0x20000000, len = 20k
     35     ram1    : org = 0x00000000, len = 0
     36     ram2    : org = 0x00000000, len = 0
     37     ram3    : org = 0x00000000, len = 0
     38     ram4    : org = 0x00000000, len = 0
     39     ram5    : org = 0x00000000, len = 0
     40     ram6    : org = 0x00000000, len = 0
     41     ram7    : org = 0x00000000, len = 0
     42 }
     43 
     44 /* For each data/text section two region are defined, a virtual region
     45    and a load region (_LMA suffix).*/
     46 
     47 /* Flash region to be used for exception vectors.*/
     48 REGION_ALIAS("VECTORS_FLASH", flash0);
     49 REGION_ALIAS("VECTORS_FLASH_LMA", flash0);
     50 
     51 /* Flash region to be used for constructors and destructors.*/
     52 REGION_ALIAS("XTORS_FLASH", flash0);
     53 REGION_ALIAS("XTORS_FLASH_LMA", flash0);
     54 
     55 /* Flash region to be used for code text.*/
     56 REGION_ALIAS("TEXT_FLASH", flash0);
     57 REGION_ALIAS("TEXT_FLASH_LMA", flash0);
     58 
     59 /* Flash region to be used for read only data.*/
     60 REGION_ALIAS("RODATA_FLASH", flash0);
     61 REGION_ALIAS("RODATA_FLASH_LMA", flash0);
     62 
     63 /* Flash region to be used for various.*/
     64 REGION_ALIAS("VARIOUS_FLASH", flash0);
     65 REGION_ALIAS("VARIOUS_FLASH_LMA", flash0);
     66 
     67 /* Flash region to be used for RAM(n) initialization data.*/
     68 REGION_ALIAS("RAM_INIT_FLASH_LMA", flash0);
     69 
     70 /* RAM region to be used for Main stack. This stack accommodates the processing
     71    of all exceptions and interrupts.*/
     72 REGION_ALIAS("MAIN_STACK_RAM", ram0);
     73 
     74 /* RAM region to be used for the process stack. This is the stack used by
     75    the main() function.*/
     76 REGION_ALIAS("PROCESS_STACK_RAM", ram0);
     77 
     78 /* RAM region to be used for data segment.*/
     79 REGION_ALIAS("DATA_RAM", ram0);
     80 REGION_ALIAS("DATA_RAM_LMA", flash0);
     81 
     82 /* RAM region to be used for BSS segment.*/
     83 REGION_ALIAS("BSS_RAM", ram0);
     84 
     85 /* RAM region to be used for the default heap.*/
     86 REGION_ALIAS("HEAP_RAM", ram0);
     87 
     88 /* Generic rules inclusion.*/
     89 INCLUDE rules.ld