Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
8fbe811b
Commit
8fbe811b
authored
Sep 14, 2005
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Fixed OMAP1510 SRAM size again
According to spru602b.pdf TRM, 1510 has 192K of SRAM, not 512K
parent
6a259f29
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
arch/arm/plat-omap/sram.c
arch/arm/plat-omap/sram.c
+2
-2
No files found.
arch/arm/plat-omap/sram.c
View file @
8fbe811b
...
@@ -32,7 +32,7 @@ static unsigned long omap_sram_ceil;
...
@@ -32,7 +32,7 @@ static unsigned long omap_sram_ceil;
/*
/*
* The amount of SRAM depends on the core type:
* The amount of SRAM depends on the core type:
* 730 = 200K, 1510 =
51
2K, 5912 = 256K, 1610 = 16K, 1710 = 16K
* 730 = 200K, 1510 =
19
2K, 5912 = 256K, 1610 = 16K, 1710 = 16K
* Note that we cannot try to test for SRAM here because writes
* Note that we cannot try to test for SRAM here because writes
* to secure SRAM will hang the system. Also the SRAM is not
* to secure SRAM will hang the system. Also the SRAM is not
* yet mapped at this point.
* yet mapped at this point.
...
@@ -46,7 +46,7 @@ void __init omap_detect_sram(void)
...
@@ -46,7 +46,7 @@ void __init omap_detect_sram(void)
else
if
(
cpu_is_omap730
())
else
if
(
cpu_is_omap730
())
omap_sram_size
=
0x32000
;
omap_sram_size
=
0x32000
;
else
if
(
cpu_is_omap1510
())
else
if
(
cpu_is_omap1510
())
omap_sram_size
=
0x
8
0000
;
omap_sram_size
=
0x
3
0000
;
else
if
(
cpu_is_omap1610
()
||
cpu_is_omap1621
()
||
cpu_is_omap1710
())
else
if
(
cpu_is_omap1610
()
||
cpu_is_omap1621
()
||
cpu_is_omap1710
())
omap_sram_size
=
0x4000
;
omap_sram_size
=
0x4000
;
else
if
(
cpu_is_omap1611
())
else
if
(
cpu_is_omap1611
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment