Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uboot-i9100
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
onny
uboot-i9100
Commits
fd27996d
Commit
fd27996d
authored
18 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Add support for 256 MB SDRAM on CPU87
Patch by Josef Wagner, 25 Nov 2005
parent
135ae006
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
board/cpu87/cpu87.c
+16
-8
16 additions, 8 deletions
board/cpu87/cpu87.c
include/configs/CPU87.h
+21
-3
21 additions, 3 deletions
include/configs/CPU87.h
with
40 additions
and
11 deletions
CHANGELOG
+
3
−
0
View file @
fd27996d
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
Changes since U-Boot 1.1.4:
======================================================================
======================================================================
* Add support for 256 MB SDRAM on CPU87
Patch by Josef Wagner, 25 Nov 2005
* Add configuration for cam5200 board (based on TQM5200S).
* Add configuration for cam5200 board (based on TQM5200S).
* More code cleanup
* More code cleanup
...
...
This diff is collapsed.
Click to expand it.
board/cpu87/cpu87.c
+
16
−
8
View file @
fd27996d
...
@@ -197,7 +197,7 @@ const iop_conf_t iop_conf_tab[4][32] = {
...
@@ -197,7 +197,7 @@ const iop_conf_t iop_conf_tab[4][32] = {
*/
*/
int
checkboard
(
void
)
int
checkboard
(
void
)
{
{
printf
(
"Board: CPU87 (Rev %02x)
\n
"
,
CPU86_REV
);
printf
(
"Board: CPU87 (Rev %02x)
\n
"
,
CPU86_REV
&
0x7f
);
return
0
;
return
0
;
}
}
...
@@ -280,7 +280,7 @@ long int initdram (int board_type)
...
@@ -280,7 +280,7 @@ long int initdram (int board_type)
volatile
memctl8260_t
*
memctl
=
&
immap
->
im_memctl
;
volatile
memctl8260_t
*
memctl
=
&
immap
->
im_memctl
;
#ifndef CFG_RAMBOOT
#ifndef CFG_RAMBOOT
ulong
size8
,
size9
;
ulong
size8
,
size9
,
size10
;
#endif
#endif
long
psize
;
long
psize
;
...
@@ -294,17 +294,25 @@ long int initdram (int board_type)
...
@@ -294,17 +294,25 @@ long int initdram (int board_type)
*/
*/
size8
=
try_init
(
memctl
,
CFG_PSDMR_8COL
,
CFG_OR2_8COL
,
size8
=
try_init
(
memctl
,
CFG_PSDMR_8COL
,
CFG_OR2_8COL
,
(
uchar
*
)
CFG_SDRAM_BASE
);
(
uchar
*
)
CFG_SDRAM_BASE
);
size9
=
try_init
(
memctl
,
CFG_PSDMR_9COL
,
CFG_OR2_9COL
,
size9
=
try_init
(
memctl
,
CFG_PSDMR_9COL
,
CFG_OR2_9COL
,
(
uchar
*
)
CFG_SDRAM_BASE
);
(
uchar
*
)
CFG_SDRAM_BASE
);
if
(
size8
<
size9
)
{
size10
=
try_init
(
memctl
,
CFG_PSDMR_10COL
,
CFG_OR2_10COL
,
psize
=
size9
;
(
uchar
*
)
CFG_SDRAM_BASE
);
printf
(
"(60x:9COL) "
);
}
else
{
psize
=
max
(
size8
,
max
(
size9
,
size10
));
if
(
psize
==
size8
)
{
psize
=
try_init
(
memctl
,
CFG_PSDMR_8COL
,
CFG_OR2_8COL
,
psize
=
try_init
(
memctl
,
CFG_PSDMR_8COL
,
CFG_OR2_8COL
,
(
uchar
*
)
CFG_SDRAM_BASE
);
(
uchar
*
)
CFG_SDRAM_BASE
);
printf
(
"(60x:8COL) "
);
printf
(
"(60x:8COL) "
);
}
}
else
if
(
psize
==
size9
){
psize
=
try_init
(
memctl
,
CFG_PSDMR_9COL
,
CFG_OR2_9COL
,
(
uchar
*
)
CFG_SDRAM_BASE
);
printf
(
"(60x:9COL) "
);
}
else
printf
(
"(60x:10COL) "
);
#endif
/* CFG_RAMBOOT */
#endif
/* CFG_RAMBOOT */
...
...
This diff is collapsed.
Click to expand it.
include/configs/CPU87.h
+
21
−
3
View file @
fd27996d
...
@@ -455,7 +455,7 @@
...
@@ -455,7 +455,7 @@
#define CFG_MIN_AM_MASK 0xC0000000
#define CFG_MIN_AM_MASK 0xC0000000
/*
/*
* we use the same values for 32 MB and
128
MB SDRAM
* we use the same values for 32
MB, 128
MB and
256
MB SDRAM
* refresh rate = 7.68 uS (100 MHz Bus Clock)
* refresh rate = 7.68 uS (100 MHz Bus Clock)
*/
*/
...
@@ -510,6 +510,24 @@
...
@@ -510,6 +510,24 @@
PSDMR_WRC_1C |\
PSDMR_WRC_1C |\
PSDMR_CL_2)
PSDMR_CL_2)
/* SDRAM initialization values for 10-column chips
*/
#define CFG_OR2_10COL (CFG_MIN_AM_MASK |\
ORxS_BPD_4 |\
ORxS_ROWST_PBI1_A4 |\
ORxS_NUMR_13)
#define CFG_PSDMR_10COL (PSDMR_PBI |\
PSDMR_SDAM_A17_IS_A5 |\
PSDMR_BSMA_A13_A15 |\
PSDMR_SDA10_PBI1_A6 |\
PSDMR_RFRC_7_CLK |\
PSDMR_PRETOACT_2W |\
PSDMR_ACTTORW_2W |\
PSDMR_LDOTOPRE_1C |\
PSDMR_WRC_1C |\
PSDMR_CL_2)
/*
/*
* Init Memory Controller:
* Init Memory Controller:
*
*
...
@@ -588,9 +606,9 @@
...
@@ -588,9 +606,9 @@
BRx_MS_SDRAM_P |\
BRx_MS_SDRAM_P |\
BRx_V)
BRx_V)
#define CFG_OR2_PRELIM CFG_OR2_
9
COL
#define CFG_OR2_PRELIM CFG_OR2_
8
COL
#define CFG_PSDMR CFG_PSDMR_
9
COL
#define CFG_PSDMR CFG_PSDMR_
8
COL
#endif
/* CFG_RAMBOOT */
#endif
/* CFG_RAMBOOT */
/* Bank 3 - Dual Ported SRAM
/* Bank 3 - Dual Ported SRAM
...
...
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