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
62506ae1
Commit
62506ae1
authored
15 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-mpc83xx
parents
c55096c0
7120c888
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/mpc83xx/fdt.c
+39
-0
39 additions, 0 deletions
cpu/mpc83xx/fdt.c
include/configs/sbc8349.h
+1
-1
1 addition, 1 deletion
include/configs/sbc8349.h
include/configs/vme8349.h
+1
-1
1 addition, 1 deletion
include/configs/vme8349.h
with
41 additions
and
2 deletions
cpu/mpc83xx/fdt.c
+
39
−
0
View file @
62506ae1
...
...
@@ -69,6 +69,45 @@ void ft_cpu_setup(void *blob, bd_t *bd)
defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) ||\
defined(CONFIG_HAS_ETH4) || defined(CONFIG_HAS_ETH5)
fdt_fixup_ethernet
(
blob
);
#ifdef CONFIG_MPC8313
/*
* mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
* h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
* so if on Rev. 2 (and higher) h/w, we fix them up here
*/
if
(
REVID_MAJOR
(
immr
->
sysconf
.
spridr
)
>=
2
)
{
int
nodeoffset
,
path
;
const
char
*
prop
;
nodeoffset
=
fdt_path_offset
(
blob
,
"/aliases"
);
if
(
nodeoffset
>=
0
)
{
#if defined(CONFIG_HAS_ETH0)
prop
=
fdt_getprop
(
blob
,
nodeoffset
,
"ethernet0"
,
NULL
);
if
(
prop
)
{
u32
tmp
[]
=
{
32
,
0x8
,
33
,
0x8
,
34
,
0x8
};
path
=
fdt_path_offset
(
blob
,
prop
);
prop
=
fdt_getprop
(
blob
,
path
,
"interrupts"
,
0
);
if
(
prop
)
fdt_setprop
(
blob
,
path
,
"interrupts"
,
&
tmp
,
sizeof
(
tmp
));
}
#endif
#if defined(CONFIG_HAS_ETH1)
prop
=
fdt_getprop
(
blob
,
nodeoffset
,
"ethernet1"
,
NULL
);
if
(
prop
)
{
u32
tmp
[]
=
{
35
,
0x8
,
36
,
0x8
,
37
,
0x8
};
path
=
fdt_path_offset
(
blob
,
prop
);
prop
=
fdt_getprop
(
blob
,
path
,
"interrupts"
,
0
);
if
(
prop
)
fdt_setprop
(
blob
,
path
,
"interrupts"
,
&
tmp
,
sizeof
(
tmp
));
}
#endif
}
}
#endif
#endif
do_fixup_by_prop_u32
(
blob
,
"device_type"
,
"cpu"
,
4
,
...
...
This diff is collapsed.
Click to expand it.
include/configs/sbc8349.h
+
1
−
1
View file @
62506ae1
...
...
@@ -304,7 +304,7 @@
#define CONFIG_SYS_I2C1_OFFSET 0x3000
#define CONFIG_SYS_I2C2_OFFSET 0x3100
#define CONFIG_SYS_I2C_OFFSET CONFIG_SYS_I2C2_OFFSET
/* could also use CONFIG_I2C_MULTI_BUS and CONFIG_SPD_BUS_NUM... */
/* could also use CONFIG_I2C_MULTI_BUS and CONFIG_
SYS_
SPD_BUS_NUM... */
/* TSEC */
#define CONFIG_SYS_TSEC1_OFFSET 0x24000
...
...
This diff is collapsed.
Click to expand it.
include/configs/vme8349.h
+
1
−
1
View file @
62506ae1
...
...
@@ -224,7 +224,7 @@
#define CONFIG_SYS_I2C1_OFFSET 0x3000
#define CONFIG_SYS_I2C2_OFFSET 0x3100
#define CONFIG_SYS_I2C_OFFSET CONFIG_SYS_I2C1_OFFSET
/* could also use CONFIG_I2C_MULTI_BUS and CONFIG_SPD_BUS_NUM... */
/* could also use CONFIG_I2C_MULTI_BUS and CONFIG_
SYS_
SPD_BUS_NUM... */
#define CONFIG_SYS_I2C_8574_ADDR2 0x20
/* I2C1, PCF8574 */
...
...
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