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
e673226f
Commit
e673226f
authored
17 years ago
by
Stefan Roese
Browse files
Options
Downloads
Patches
Plain Diff
ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
Signed-off-by:
Stefan Roese
<
sr@denx.de
>
parent
90e6f41c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
board/amcc/acadia/acadia.c
+7
-3
7 additions, 3 deletions
board/amcc/acadia/acadia.c
with
7 additions
and
3 deletions
board/amcc/acadia/acadia.c
+
7
−
3
View file @
e673226f
...
...
@@ -26,7 +26,7 @@
extern
void
board_pll_init_f
(
void
);
void
liveoak
_gpio_init
(
void
)
static
void
acadia
_gpio_init
(
void
)
{
/*
* GPIO0 setup (select GPIO or alternate function)
...
...
@@ -55,8 +55,12 @@ int board_early_init_f(void)
{
unsigned
int
reg
;
board_pll_init_f
();
liveoak_gpio_init
();
/* don't reinit PLL when booting via I2C bootstrap option */
mfsdr
(
SDR_PINSTP
,
reg
);
if
(
reg
!=
0xf0000000
)
board_pll_init_f
();
acadia_gpio_init
();
/* USB Host core needs this bit set */
mfsdr
(
sdrultra1
,
reg
);
...
...
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