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
87b4ef56
Commit
87b4ef56
authored
16 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Coding style cleanup; update CHANEGLOG
Signed-off-by:
Wolfgang Denk
<
wd@denx.de
>
parent
7c803be2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+30
-0
30 additions, 0 deletions
CHANGELOG
board/tqc/tqm8xx/tqm8xx.c
+35
-35
35 additions, 35 deletions
board/tqc/tqm8xx/tqm8xx.c
with
65 additions
and
35 deletions
CHANGELOG
+
30
−
0
View file @
87b4ef56
commit 7c803be2eb3cae245dedda438776e08fb122250f
Author: Wolfgang Denk <wd@denx.de>
Date: Tue Sep 16 18:02:19 2008 +0200
TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
After switching to using the CFI flash driver, the correct remapping
of the flash banks was forgotten.
Also, some boards were not adapted, and the old legacy flash driver
was not removed yet.
Signed-off-by: Wolfgang Denk <wd@denx.de>
commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
Author: Wolfgang Denk <wd@denx.de>
Date: Sun Sep 14 00:59:35 2008 +0200
Prepare v2008.10-rc2
Signed-off-by: Wolfgang Denk <wd@denx.de>
commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
Author: Wolfgang Denk <wd@denx.de>
Date: Sat Sep 13 02:23:05 2008 +0200
Coding style cleanup, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
commit 0c32565f536609d78feef35c88bbc39d3ac53a73
commit 0c32565f536609d78feef35c88bbc39d3ac53a73
Author: Peter Tyser <ptyser@xes-inc.com>
Author: Peter Tyser <ptyser@xes-inc.com>
Date: Wed Sep 10 09:18:34 2008 -0500
Date: Wed Sep 10 09:18:34 2008 -0500
This diff is collapsed.
Click to expand it.
board/tqc/tqm8xx/tqm8xx.c
+
35
−
35
View file @
87b4ef56
...
@@ -400,8 +400,6 @@ phys_size_t initdram (int board_type)
...
@@ -400,8 +400,6 @@ phys_size_t initdram (int board_type)
memctl
->
memc_or5
=
CFG_OR5_ISP1362
;
memctl
->
memc_or5
=
CFG_OR5_ISP1362
;
memctl
->
memc_br5
=
CFG_BR5_ISP1362
;
memctl
->
memc_br5
=
CFG_BR5_ISP1362
;
#endif
/* CONFIG_ISP1362_USB */
#endif
/* CONFIG_ISP1362_USB */
return
(
size_b0
+
size_b1
);
return
(
size_b0
+
size_b1
);
}
}
...
@@ -463,8 +461,9 @@ int misc_init_r (void)
...
@@ -463,8 +461,9 @@ int misc_init_r (void)
if
(
CFG_OR_TIMING_FLASH_AT_50MHZ
&
OR_TRLX
)
{
if
(
CFG_OR_TIMING_FLASH_AT_50MHZ
&
OR_TRLX
)
{
trlx
=
OR_TRLX
;
trlx
=
OR_TRLX
;
scy
*=
2
;
scy
*=
2
;
}
else
}
else
{
trlx
=
0
;
trlx
=
0
;
}
/*
/*
* We assume that each 10MHz of bus clock require 1-clk SCY
* We assume that each 10MHz of bus clock require 1-clk SCY
...
@@ -501,9 +500,11 @@ int misc_init_r (void)
...
@@ -501,9 +500,11 @@ int misc_init_r (void)
flash_or_timing
=
(
scy
<<
4
)
|
trlx
|
flash_or_timing
=
(
scy
<<
4
)
|
trlx
|
(
CFG_OR_TIMING_FLASH_AT_50MHZ
&
~
(
OR_TRLX
|
OR_SCY_MSK
));
(
CFG_OR_TIMING_FLASH_AT_50MHZ
&
~
(
OR_TRLX
|
OR_SCY_MSK
));
memctl
->
memc_or0
=
flash_or_timing
|
(
-
flash_info
[
0
].
size
&
OR_AM_MSK
);
memctl
->
memc_or0
=
flash_or_timing
|
(
-
flash_info
[
0
].
size
&
OR_AM_MSK
);
#else
#else
memctl
->
memc_or0
=
CFG_OR_TIMING_FLASH
|
(
-
flash_info
[
0
].
size
&
OR_AM_MSK
);
memctl
->
memc_or0
=
CFG_OR_TIMING_FLASH
|
(
-
flash_info
[
0
].
size
&
OR_AM_MSK
);
#endif
#endif
memctl
->
memc_br0
=
(
CFG_FLASH_BASE
&
BR_BA_MSK
)
|
BR_MS_GPCM
|
BR_V
;
memctl
->
memc_br0
=
(
CFG_FLASH_BASE
&
BR_BA_MSK
)
|
BR_MS_GPCM
|
BR_V
;
...
@@ -518,8 +519,10 @@ int misc_init_r (void)
...
@@ -518,8 +519,10 @@ int misc_init_r (void)
memctl
->
memc_or1
=
CFG_OR_TIMING_FLASH
|
memctl
->
memc_or1
=
CFG_OR_TIMING_FLASH
|
(
-
flash_info
[
1
].
size
&
0xFFFF8000
);
(
-
flash_info
[
1
].
size
&
0xFFFF8000
);
#endif
#endif
memctl
->
memc_br1
=
((
CFG_FLASH_BASE
+
flash_info
[
0
].
size
)
&
BR_BA_MSK
)
|
memctl
->
memc_br1
=
BR_MS_GPCM
|
BR_V
;
((
CFG_FLASH_BASE
+
flash_info
[
0
].
size
)
&
BR_BA_MSK
)
|
BR_MS_GPCM
|
BR_V
;
debug
(
"## BR1: 0x%08x OR1: 0x%08x
\n
"
,
debug
(
"## BR1: 0x%08x OR1: 0x%08x
\n
"
,
memctl
->
memc_br1
,
memctl
->
memc_or1
);
memctl
->
memc_br1
,
memctl
->
memc_or1
);
...
@@ -609,7 +612,4 @@ int last_stage_init(void)
...
@@ -609,7 +612,4 @@ int last_stage_init(void)
return
0
;
return
0
;
}
}
#endif
#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