Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Jack Humbert
reform-boundary-uboot
Commits
9295acb7
Commit
9295acb7
authored
18 years ago
by
Markus Klotzbuecher
Committed by
Markus Klotzbuecher
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
SPC1920: add support for the FM18L08 Ramtron FRAM
parent
38ccd2fd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
board/spc1920/spc1920.c
+5
-0
5 additions, 0 deletions
board/spc1920/spc1920.c
include/configs/spc1920.h
+14
-1
14 additions, 1 deletion
include/configs/spc1920.h
with
19 additions
and
1 deletion
board/spc1920/spc1920.c
+
5
−
0
View file @
9295acb7
...
@@ -175,6 +175,11 @@ long int initdram (int board_type)
...
@@ -175,6 +175,11 @@ long int initdram (int board_type)
/* initalize the DSP Host Port Interface */
/* initalize the DSP Host Port Interface */
hpi_init
();
hpi_init
();
/* PLD Setup */
memctl
->
memc_or4
=
CFG_OR4_PRELIM
;
memctl
->
memc_br4
=
CFG_BR4_PRELIM
;
udelay
(
1000
);
/* PLD Setup */
/* PLD Setup */
memctl
->
memc_or5
=
CFG_OR5_PRELIM
;
memctl
->
memc_or5
=
CFG_OR5_PRELIM
;
memctl
->
memc_br5
=
CFG_BR5_PRELIM
;
memctl
->
memc_br5
=
CFG_BR5_PRELIM
;
...
...
This diff is collapsed.
Click to expand it.
include/configs/spc1920.h
+
14
−
1
View file @
9295acb7
...
@@ -391,11 +391,24 @@
...
@@ -391,11 +391,24 @@
#define HPI_HPID_NOINC_2 HPI_REG(0x300000c + 2)
#define HPI_HPID_NOINC_2 HPI_REG(0x300000c + 2)
#endif
/* CONFIG_SPC1920_HPI_TEST */
#endif
/* CONFIG_SPC1920_HPI_TEST */
/*
* Ramtron FM18L08 FRAM 32KB on CS4
*/
#define CFG_SPC1920_FRAM_BASE 0x80100000
#define CFG_PRELIM_OR4_AM 0xffff8000
#define CFG_OR4_PRELIM (CFG_PRELIM_OR4_AM | \
OR_ACS_DIV2 | \
OR_BI | \
OR_SCY_4_CLK | \
OR_TRLX)
#define CFG_BR4_PRELIM ((CFG_SPC1920_FRAM_BASE & BR_BA_MSK) | BR_PS_8 | BR_V);
/*
/*
* PLD CS5
* PLD CS5
*/
*/
#define CFG_SPC1920_PLD_BASE 0x80000000
#define CFG_SPC1920_PLD_BASE 0x80000000
#define CFG_PRELIM_OR5_AM 0xfff
00
000
#define CFG_PRELIM_OR5_AM 0xfff
f8
000
#define CFG_OR5_PRELIM (CFG_PRELIM_OR5_AM | \
#define CFG_OR5_PRELIM (CFG_PRELIM_OR5_AM | \
OR_CSNT_SAM | \
OR_CSNT_SAM | \
...
...
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