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
Reform
reform-boundary-uboot
Commits
0bd1f96a
Commit
0bd1f96a
authored
8 years ago
by
Tom Rini
Browse files
Options
Downloads
Plain Diff
Merge
git://git.denx.de/u-boot-mpc85xx
parents
7588bf93
01b25d42
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
arch/powerpc/cpu/mpc85xx/fdt.c
+36
-25
36 additions, 25 deletions
arch/powerpc/cpu/mpc85xx/fdt.c
with
36 additions
and
25 deletions
arch/powerpc/cpu/mpc85xx/fdt.c
+
36
−
25
View file @
0bd1f96a
...
...
@@ -180,6 +180,39 @@ static inline void ft_fixup_l3cache(void *blob, int off)
#define ft_fixup_l3cache(x, y)
#endif
#if defined(CONFIG_L2_CACHE) || \
defined(CONFIG_BACKSIDE_L2_CACHE) || \
defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2)
static
inline
void
ft_fixup_l2cache_compatible
(
void
*
blob
,
int
off
)
{
int
len
;
struct
cpu_type
*
cpu
=
identify_cpu
(
SVR_SOC_VER
(
get_svr
()));
if
(
cpu
)
{
char
buf
[
40
];
if
(
isdigit
(
cpu
->
name
[
0
]))
{
/* MPCxxxx, where xxxx == 4-digit number */
len
=
sprintf
(
buf
,
"fsl,mpc%s-l2-cache-controller"
,
cpu
->
name
)
+
1
;
}
else
{
/* Pxxxx or Txxxx, where xxxx == 4-digit number */
len
=
sprintf
(
buf
,
"fsl,%c%s-l2-cache-controller"
,
tolower
(
cpu
->
name
[
0
]),
cpu
->
name
+
1
)
+
1
;
}
/*
* append "cache" after the NULL character that the previous
* sprintf wrote. This is how a device tree stores multiple
* strings in a property.
*/
len
+=
sprintf
(
buf
+
len
,
"cache"
)
+
1
;
fdt_setprop
(
blob
,
off
,
"compatible"
,
buf
,
len
);
}
}
#endif
#if defined(CONFIG_L2_CACHE)
/* return size in kilobytes */
static
inline
u32
l2cache_size
(
void
)
...
...
@@ -215,9 +248,8 @@ static inline u32 l2cache_size(void)
static
inline
void
ft_fixup_l2cache
(
void
*
blob
)
{
int
len
,
off
;
int
off
;
u32
*
ph
;
struct
cpu_type
*
cpu
=
identify_cpu
(
SVR_SOC_VER
(
get_svr
()));
const
u32
line_size
=
32
;
const
u32
num_ways
=
8
;
...
...
@@ -243,28 +275,7 @@ static inline void ft_fixup_l2cache(void *blob)
return
;
}
if
(
cpu
)
{
char
buf
[
40
];
if
(
isdigit
(
cpu
->
name
[
0
]))
{
/* MPCxxxx, where xxxx == 4-digit number */
len
=
sprintf
(
buf
,
"fsl,mpc%s-l2-cache-controller"
,
cpu
->
name
)
+
1
;
}
else
{
/* Pxxxx or Txxxx, where xxxx == 4-digit number */
len
=
sprintf
(
buf
,
"fsl,%c%s-l2-cache-controller"
,
tolower
(
cpu
->
name
[
0
]),
cpu
->
name
+
1
)
+
1
;
}
/*
* append "cache" after the NULL character that the previous
* sprintf wrote. This is how a device tree stores multiple
* strings in a property.
*/
len
+=
sprintf
(
buf
+
len
,
"cache"
)
+
1
;
fdt_setprop
(
blob
,
off
,
"compatible"
,
buf
,
len
);
}
ft_fixup_l2cache_compatible
(
blob
,
off
);
fdt_setprop
(
blob
,
off
,
"cache-unified"
,
NULL
,
0
);
fdt_setprop_cell
(
blob
,
off
,
"cache-block-size"
,
line_size
);
fdt_setprop_cell
(
blob
,
off
,
"cache-size"
,
size
);
...
...
@@ -337,7 +348,7 @@ static inline void ft_fixup_l2cache(void *blob)
fdt_setprop_cell
(
blob
,
l2_off
,
"cache-size"
,
size
);
fdt_setprop_cell
(
blob
,
l2_off
,
"cache-sets"
,
num_sets
);
fdt_setprop_cell
(
blob
,
l2_off
,
"cache-level"
,
2
);
f
d
t_
setprop
(
blob
,
l2_off
,
"compatible"
,
"cache"
,
6
);
ft_
fixup_l2cache_compatible
(
blob
,
l2_off
);
}
if
(
l3_off
<
0
)
{
...
...
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