forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
F411re feature buildout #2065
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
F411re feature buildout #2065
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
a3673cc
Set up for new tinyusb integration. Not yet functional.
hierophect f9b5a9a
Merge branch 'F3xx-port-setup' into f411re-tinyusb
hierophect 0dee1a1
Setup for changes
hierophect 2674688
Pin down some TUSB issues
hierophect d66c959
Merge tinyusb changes from upstream
hierophect 21f1ae5
Merge in PR edits
hierophect 9813984
Implement working (if useless) USB on F411
hierophect 45d1c9f
Merge branch 'F4xx-port-setup' into f411re-tinyusb
hierophect 90b1701
Add CDC REPL access
hierophect 343d5aa
Delete redundant file
hierophect 6c77239
Add temp status LEDs
hierophect e2fc55f
Add baseline HAL I2C support
hierophect 06d53ef
minor debugging changes
hierophect 268cf0a
Quick fix for incorrect MCU package type
hierophect 0c43bae
Merge branch 'master' into f411re-feature-buildout
hierophect a635d46
Fix merge related issues
hierophect 2489c09
Merge i2c implementation
hierophect c375a5d
Add pin and module support for F411
hierophect 294d6dc
Add flash functions and setup, fix msc descriptor bug
hierophect 300dc68
Further non-functional flash changes
hierophect c4c55ff
Fixed remaining issues with flash organization and writing
hierophect 1539dca
Add reset support, minor fixes
hierophect 60b4cd6
Fix desynchronized submodules
hierophect e0a4953
more submodule fixes
hierophect 620d3d1
Add conditional endpoints to descriptor script
hierophect 0fdb5a0
Text fixes
hierophect a9d3ad8
Fix flash size, add filesystem disable flag
hierophect bc7ba33
Add uid fetch, revert USB hacks
hierophect 1f42ce5
QOL fixes, compatibility fixes, attribution
hierophect 7dbf1a8
text fixes
hierophect 95411a6
Cosmetic fixes
hierophect e490e63
Add warnings, cosmetic fixes, remove vestigial modules
hierophect 479b047
Reverted descriptor changes pending HID restructuring
hierophect File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,189 +1,109 @@ | ||
| /* | ||
| ****************************************************************************** | ||
| ** | ||
| ** File : LinkerScript.ld | ||
| ** | ||
| ** Author : Auto-generated by Ac6 System Workbench | ||
| ** | ||
| ** Abstract : Linker script for STM32F411VETx series | ||
| ** 512Kbytes FLASH and 128Kbytes RAM | ||
| ** | ||
| ** Set heap size, stack size and stack location according | ||
| ** to application requirements. | ||
| ** | ||
| ** Set memory bank area and size if external memory is used. | ||
| ** | ||
| ** Target : STMicroelectronics STM32 | ||
| ** | ||
| ** Distribution: The file is distributed “as is,” without any warranty | ||
| ** of any kind. | ||
| ** | ||
| ***************************************************************************** | ||
| ** @attention | ||
| ** | ||
| ** <h2><center>© COPYRIGHT(c) 2014 Ac6</center></h2> | ||
| ** | ||
| ** Redistribution and use in source and binary forms, with or without modification, | ||
| ** are permitted provided that the following conditions are met: | ||
| ** 1. Redistributions of source code must retain the above copyright notice, | ||
| ** this list of conditions and the following disclaimer. | ||
| ** 2. 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. | ||
| ** 3. Neither the name of Ac6 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 HOLDER 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. | ||
| ** | ||
| ***************************************************************************** | ||
| GNU linker script for STM32F411 via Micropython | ||
| */ | ||
|
|
||
| /* Entry Point */ | ||
| ENTRY(Reset_Handler) | ||
|
|
||
| /* Highest address of the user mode stack */ | ||
| _estack = 0x20020000; /* end of RAM */ | ||
| /* Generate a link error if heap and stack don't fit into RAM */ | ||
| _Min_Heap_Size = 0x200; /* required amount of heap */ | ||
| _Min_Stack_Size = 0x400; /* required amount of stack */ | ||
|
|
||
| /* Specify the memory areas */ | ||
| MEMORY | ||
| { | ||
| RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K | ||
| FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K | ||
| FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 512K /* entire flash */ | ||
| FLASH_ISR (rx) : ORIGIN = 0x08000000, LENGTH = 16K /* sector 0 */ | ||
| FLASH_FS (rx) : ORIGIN = 0x08004000, LENGTH = 48K /* sectors 1,2,3 are 16K */ | ||
| FLASH_TEXT (rx) : ORIGIN = 0x08010000, LENGTH = 448K /* sector 4 is 64K, sectors 5,6,7 are 128K */ | ||
| RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K | ||
| } | ||
|
|
||
| /* Define output sections */ | ||
| /* produce a link error if there is not this amount of RAM for these sections */ | ||
| _minimum_stack_size = 2K; | ||
| _minimum_heap_size = 16K; | ||
|
|
||
| /* Define tho top end of the stack. The stack is full descending so begins just | ||
| above last byte of RAM. Note that EABI requires the stack to be 8-byte | ||
| aligned for a call. */ | ||
| _estack = ORIGIN(RAM) + LENGTH(RAM); | ||
|
|
||
| /* RAM extents for the garbage collector */ | ||
| _ram_start = ORIGIN(RAM); | ||
| _ram_end = ORIGIN(RAM) + LENGTH(RAM); | ||
| _heap_start = _ebss; /* heap starts just after statically allocated memory */ | ||
| _heap_end = 0x2001c000; /* tunable */ | ||
|
|
||
| ENTRY(Reset_Handler) | ||
|
|
||
| /* define output sections */ | ||
| SECTIONS | ||
| { | ||
| /* The startup code goes first into FLASH */ | ||
| .isr_vector : | ||
| { | ||
| . = ALIGN(4); | ||
| KEEP(*(.isr_vector)) /* Startup code */ | ||
| . = ALIGN(4); | ||
| } >FLASH | ||
|
|
||
| /* The program code and other data goes into FLASH */ | ||
| .text : | ||
| { | ||
| . = ALIGN(4); | ||
| *(.text) /* .text sections (code) */ | ||
| *(.text*) /* .text* sections (code) */ | ||
| *(.glue_7) /* glue arm to thumb code */ | ||
| *(.glue_7t) /* glue thumb to arm code */ | ||
| *(.eh_frame) | ||
|
|
||
| KEEP (*(.init)) | ||
| KEEP (*(.fini)) | ||
|
|
||
| . = ALIGN(4); | ||
| _etext = .; /* define a global symbols at end of code */ | ||
| } >FLASH | ||
|
|
||
| /* Constant data goes into FLASH */ | ||
| .rodata : | ||
| { | ||
| . = ALIGN(4); | ||
| *(.rodata) /* .rodata sections (constants, strings, etc.) */ | ||
| *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ | ||
| . = ALIGN(4); | ||
| } >FLASH | ||
|
|
||
| .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH | ||
| .ARM : { | ||
| __exidx_start = .; | ||
| *(.ARM.exidx*) | ||
| __exidx_end = .; | ||
| } >FLASH | ||
|
|
||
| .preinit_array : | ||
| { | ||
| PROVIDE_HIDDEN (__preinit_array_start = .); | ||
| KEEP (*(.preinit_array*)) | ||
| PROVIDE_HIDDEN (__preinit_array_end = .); | ||
| } >FLASH | ||
| .init_array : | ||
| { | ||
| PROVIDE_HIDDEN (__init_array_start = .); | ||
| KEEP (*(SORT(.init_array.*))) | ||
| KEEP (*(.init_array*)) | ||
| PROVIDE_HIDDEN (__init_array_end = .); | ||
| } >FLASH | ||
| .fini_array : | ||
| { | ||
| PROVIDE_HIDDEN (__fini_array_start = .); | ||
| KEEP (*(SORT(.fini_array.*))) | ||
| KEEP (*(.fini_array*)) | ||
| PROVIDE_HIDDEN (__fini_array_end = .); | ||
| } >FLASH | ||
|
|
||
| /* used by the startup to initialize data */ | ||
| _sidata = LOADADDR(.data); | ||
|
|
||
| /* Initialized data sections goes into RAM, load LMA copy after code */ | ||
| .data : | ||
| { | ||
| . = ALIGN(4); | ||
| _sdata = .; /* create a global symbol at data start */ | ||
| *(.data) /* .data sections */ | ||
| *(.data*) /* .data* sections */ | ||
|
|
||
| . = ALIGN(4); | ||
| _edata = .; /* define a global symbol at data end */ | ||
| } >RAM AT> FLASH | ||
|
|
||
|
|
||
| /* Uninitialized data section */ | ||
| . = ALIGN(4); | ||
| .bss : | ||
| { | ||
| /* This is used by the startup in order to initialize the .bss secion */ | ||
| _sbss = .; /* define a global symbol at bss start */ | ||
| __bss_start__ = _sbss; | ||
| *(.bss) | ||
| *(.bss*) | ||
| *(COMMON) | ||
|
|
||
| . = ALIGN(4); | ||
| _ebss = .; /* define a global symbol at bss end */ | ||
| __bss_end__ = _ebss; | ||
| } >RAM | ||
|
|
||
| /* User_heap_stack section, used to check that there is enough RAM left */ | ||
| ._user_heap_stack : | ||
| { | ||
| . = ALIGN(8); | ||
| PROVIDE ( end = . ); | ||
| PROVIDE ( _end = . ); | ||
| . = . + _Min_Heap_Size; | ||
| . = . + _Min_Stack_Size; | ||
| . = ALIGN(8); | ||
| } >RAM | ||
|
|
||
|
|
||
|
|
||
| /* Remove information from the standard libraries */ | ||
| /DISCARD/ : | ||
| { | ||
| libc.a ( * ) | ||
| libm.a ( * ) | ||
| libgcc.a ( * ) | ||
| } | ||
|
|
||
| .ARM.attributes 0 : { *(.ARM.attributes) } | ||
| /* The startup code goes first into FLASH */ | ||
| .isr_vector : | ||
| { | ||
| . = ALIGN(4); | ||
| KEEP(*(.isr_vector)) /* Startup code */ | ||
|
|
||
| /* This first flash block is 16K annd the isr vectors only take up | ||
| about 400 bytes. Micropython pads this with files, but this didn't | ||
| work with the size of Circuitpython's ff object. */ | ||
|
|
||
| . = ALIGN(4); | ||
| } >FLASH_ISR | ||
|
|
||
| /* The program code and other data goes into FLASH */ | ||
| .text : | ||
| { | ||
| . = ALIGN(4); | ||
| *(.text*) /* .text* sections (code) */ | ||
| *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ | ||
| /* *(.glue_7) */ /* glue arm to thumb code */ | ||
| /* *(.glue_7t) */ /* glue thumb to arm code */ | ||
|
|
||
| . = ALIGN(4); | ||
| _etext = .; /* define a global symbol at end of code */ | ||
| } >FLASH_TEXT | ||
|
|
||
| /* used by the startup to initialize data */ | ||
| _sidata = LOADADDR(.data); | ||
|
|
||
| /* This is the initialized data section | ||
| The program executes knowing that the data is in the RAM | ||
| but the loader puts the initial values in the FLASH (inidata). | ||
| It is one task of the startup to copy the initial values from FLASH to RAM. */ | ||
| .data : | ||
| { | ||
| . = ALIGN(4); | ||
| _sdata = .; /* create a global symbol at data start; used by startup code in order to initialise the .data section in RAM */ | ||
| *(.data*) /* .data* sections */ | ||
|
|
||
| . = ALIGN(4); | ||
| _edata = .; /* define a global symbol at data end; used by startup code in order to initialise the .data section in RAM */ | ||
| } >RAM AT> FLASH_TEXT | ||
|
|
||
| /* Uninitialized data section */ | ||
| .bss : | ||
| { | ||
| . = ALIGN(4); | ||
| _sbss = .; /* define a global symbol at bss start; used by startup code */ | ||
| *(.bss*) | ||
| *(COMMON) | ||
|
|
||
| . = ALIGN(4); | ||
| _ebss = .; /* define a global symbol at bss end; used by startup code and GC */ | ||
| } >RAM | ||
|
|
||
| /* this is to define the start of the heap, and make sure we have a minimum size */ | ||
| .heap : | ||
| { | ||
| . = ALIGN(4); | ||
| . = . + _minimum_heap_size; | ||
| . = ALIGN(4); | ||
| } >RAM | ||
|
|
||
| /* this just checks there is enough RAM for the stack */ | ||
| .stack : | ||
| { | ||
| . = ALIGN(4); | ||
| . = . + _minimum_stack_size; | ||
| . = ALIGN(4); | ||
| } >RAM | ||
|
|
||
| .ARM.attributes 0 : { *(.ARM.attributes) } | ||
| } | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.