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
edf0b543
Commit
edf0b543
authored
18 years ago
by
Stefan Roese
Browse files
Options
Downloads
Patches
Plain Diff
Make 4xx bootup message shorter on 440EPx/GRx platforms
Patch by Stefan Roese, 18 Oct 2006
parent
d7762337
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
cpu/ppc4xx/cpu.c
+12
-4
12 additions, 4 deletions
cpu/ppc4xx/cpu.c
with
15 additions
and
4 deletions
CHANGELOG
+
3
−
0
View file @
edf0b543
...
...
@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Make 4xx bootup message shorter on 440EPx/GRx platforms
Patch by Stefan Roese, 18 Oct 2006
* PPC405EP: Add support for board configuration of CPC0_PCI register
This is needed to be able to configure PerWE*/PCI_INT* pin as PerWE*
Patch by Tolunay Orkun, 07 Apr 2006
...
...
This diff is collapsed.
Click to expand it.
cpu/ppc4xx/cpu.c
+
12
−
4
View file @
edf0b543
...
...
@@ -190,6 +190,7 @@ int checkcpu (void)
uint
pvr
=
get_pvr
();
ulong
clock
=
gd
->
cpu_clk
;
char
buf
[
32
];
char
addstr
[
64
]
=
""
;
#if !defined(CONFIG_IOP480)
sys_info_t
sys_info
;
...
...
@@ -308,19 +309,23 @@ int checkcpu (void)
#endif
/* CONFIG_440 */
case
PVR_440EPX1_RA
:
puts
(
"EPx Rev. A - Security/Kasumi support"
);
puts
(
"EPx Rev. A"
);
strcpy
(
addstr
,
"Security/Kasumi support"
);
break
;
case
PVR_440EPX2_RA
:
puts
(
"EPx Rev. A - No Security/Kasumi support"
);
puts
(
"EPx Rev. A"
);
strcpy
(
addstr
,
"No Security/Kasumi support"
);
break
;
case
PVR_440GRX1_RA
:
puts
(
"GRx Rev. A - Security/Kasumi support"
);
puts
(
"GRx Rev. A"
);
strcpy
(
addstr
,
"Security/Kasumi support"
);
break
;
case
PVR_440GRX2_RA
:
puts
(
"GRx Rev. A - No Security/Kasumi support"
);
puts
(
"GRx Rev. A"
);
strcpy
(
addstr
,
"No Security/Kasumi support"
);
break
;
case
PVR_440SP_RA
:
...
...
@@ -349,6 +354,9 @@ int checkcpu (void)
sys_info
.
freqPLB
/
sys_info
.
pllOpbDiv
/
1000000
,
FREQ_EBC
/
1000000
);
if
(
addstr
[
0
]
!=
0
)
printf
(
" %s
\n
"
,
addstr
);
#if defined(I2C_BOOTROM)
printf
(
" I2C boot EEPROM %sabled
\n
"
,
i2c_bootrom_enabled
()
?
"en"
:
"dis"
);
#if defined(SDR0_PINSTP_SHIFT)
...
...
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