Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
e5bb99bf
Commit
e5bb99bf
authored
11 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
A10: Make sure it is tolerant of CONFIG_BOOT_SDRAM_DATA
parent
764ba4da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arm/src/a1x/a1x_boot.c
+13
-3
13 additions, 3 deletions
arch/arm/src/a1x/a1x_boot.c
with
13 additions
and
3 deletions
arch/arm/src/a1x/a1x_boot.c
+
13
−
3
View file @
e5bb99bf
...
...
@@ -328,31 +328,41 @@ void up_boot(void)
a1x_copyvectorblock
();
#ifdef CONFIG_ARCH_FPU
/* Initialize the FPU */
#ifdef CONFIG_ARCH_FPU
arm_fpuconfig
();
#endif
#ifdef CONFIG_BOOT_SDRAM_DATA
/* This setting is inappropriate for the A1x because the code is *always*
* executing from SDRAM. If CONFIG_BOOT_SDRAM_DATA happens to be set,
* let's try to do the right thing and initialize the .data and .bss
* sections.
*/
arm_data_initialize
();
#endif
/* Perform common, low-level chip initialization (might do nothing) */
a1x_lowsetup
();
#ifdef USE_EARLYSERIALINIT
/* Perform early serial initialization if we are going to use the serial
* driver.
*/
#ifdef USE_EARLYSERIALINIT
up_earlyserialinit
();
#endif
#ifdef CONFIG_NUTTX_KERNEL
/* For the case of the separate user-/kernel-space build, perform whatever
* platform specific initialization of the user memory is required.
* Normally this just means initializing the user space .data and .bss
* segments.
*/
#ifdef CONFIG_NUTTX_KERNEL
a1x_userspace
();
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment