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
17f098bd
Commit
17f098bd
authored
15 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of /home/wd/git/u-boot/custodians
parents
70ad8337
5db1dcce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/ppc4xx/4xx_pci.c
+23
-2
23 additions, 2 deletions
cpu/ppc4xx/4xx_pci.c
cpu/ppc4xx/cpu_init.c
+0
-5
0 additions, 5 deletions
cpu/ppc4xx/cpu_init.c
include/common.h
+2
-2
2 additions, 2 deletions
include/common.h
with
25 additions
and
9 deletions
cpu/ppc4xx/4xx_pci.c
+
23
−
2
View file @
17f098bd
...
...
@@ -87,6 +87,20 @@ DECLARE_GLOBAL_DATA_PTR;
*/
int
__pci_pre_init
(
struct
pci_controller
*
hose
)
{
#if defined (CONFIG_405EP)
/*
* Enable the internal PCI arbiter by default.
*
* On 405EP CPUs the internal arbiter can be controlled
* by the I2C strapping EEPROM. If you want to do so
* or if you want to disable the arbiter pci_pre_init()
* must be reimplemented without enabling the arbiter.
* The arbiter is enabled in this place because of
* compatibility reasons.
*/
mtdcr
(
cpc0_pci
,
mfdcr
(
cpc0_pci
)
|
CPC0_PCI_ARBIT_EN
);
#endif
/* CONFIG_405EP */
return
1
;
}
int
pci_pre_init
(
struct
pci_controller
*
hose
)
__attribute__
((
weak
,
alias
(
"__pci_pre_init"
)));
...
...
@@ -323,8 +337,15 @@ void pci_405gp_init(struct pci_controller *hose)
}
#endif
#if defined(CONFIG_405EP)
/* on ppc405ep vendor id is not set */
pci_write_config_word
(
PCIDEVID_405GP
,
PCI_VENDOR_ID
,
0x1014
);
/* IBM */
#if defined(CONFIG_405EP)
/*
* on ppc405ep vendor/device id is not set
* The user manual says 0x1014 (IBM) / 0x0156 (405GP!)
* are the correct values.
*/
pci_write_config_word
(
PCIDEVID_405GP
,
PCI_VENDOR_ID
,
PCI_VENDOR_ID_IBM
);
pci_write_config_word
(
PCIDEVID_405GP
,
PCI_DEVICE_ID
,
PCI_DEVICE_ID_IBM_405GP
);
#endif
/*
...
...
This diff is collapsed.
Click to expand it.
cpu/ppc4xx/cpu_init.c
+
0
−
5
View file @
17f098bd
...
...
@@ -174,11 +174,6 @@ cpu_init_f (void)
* Set EMAC noise filter bits
*/
mtdcr
(
cpc0_epctl
,
CPC0_EPRCSR_E0NFE
|
CPC0_EPRCSR_E1NFE
);
/*
* Enable the internal PCI arbiter
*/
mtdcr
(
cpc0_pci
,
mfdcr
(
cpc0_pci
)
|
CPC0_PCI_HOST_CFG_EN
|
CPC0_PCI_ARBIT_EN
);
#endif
/* CONFIG_405EP */
#if defined(CONFIG_SYS_4xx_GPIO_TABLE)
...
...
This diff is collapsed.
Click to expand it.
include/common.h
+
2
−
2
View file @
17f098bd
...
...
@@ -275,7 +275,8 @@ void pci_init_board(void);
void
pciinfo
(
int
,
int
);
#if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
int
pci_pre_init
(
struct
pci_controller
*
);
int
pci_pre_init
(
struct
pci_controller
*
);
int
is_pci_host
(
struct
pci_controller
*
);
#endif
#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
...
...
@@ -285,7 +286,6 @@ void pciinfo (int, int);
# if defined(CONFIG_SYS_PCI_MASTER_INIT)
void
pci_master_init
(
struct
pci_controller
*
);
# endif
int
is_pci_host
(
struct
pci_controller
*
);
#if defined(CONFIG_440SPE) || \
defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
defined(CONFIG_405EX)
...
...
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