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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
a2f34be7
Commit
a2f34be7
authored
21 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup
parent
7cb22f97
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/mips/incaip_clock.c
+42
-47
42 additions, 47 deletions
cpu/mips/incaip_clock.c
with
42 additions
and
47 deletions
cpu/mips/incaip_clock.c
+
42
−
47
View file @
a2f34be7
...
@@ -46,22 +46,17 @@ uint incaip_get_cpuclk(void)
...
@@ -46,22 +46,17 @@ uint incaip_get_cpuclk(void)
/* CPU Clock Input Multiplexer (MUX I) */
/* CPU Clock Input Multiplexer (MUX I) */
/* Multiplexer MUX I selects the maximum input clock to the CPU. */
/* Multiplexer MUX I selects the maximum input clock to the CPU. */
/*-------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------*/
if
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_MUXCR
)
&
INCA_IP_CGU_CGU_MUXCR_MUXI
)
if
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_MUXCR
)
&
{
INCA_IP_CGU_CGU_MUXCR_MUXI
)
{
/* MUX I set to 150 MHz clock */
/* MUX I set to 150 MHz clock */
return
150000000
;
return
150000000
;
}
}
else
{
else
{
/* MUX I set to 100/133 MHz clock */
/* MUX I set to 100/133 MHz clock */
if
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_DIVCR
)
&
0x40
)
if
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_DIVCR
)
&
0x40
)
{
{
/* Division value is 1/3, maximum CPU operating */
/* Division value is 1/3, maximum CPU operating */
/* frequency is 133.3 MHz */
/* frequency is 133.3 MHz */
return
130000000
;
return
130000000
;
}
}
else
{
else
{
/* Division value is 1/4, maximum CPU operating */
/* Division value is 1/4, maximum CPU operating */
/* frequency is 100 MHz */
/* frequency is 100 MHz */
return
100000000
;
return
100000000
;
...
@@ -89,8 +84,7 @@ uint incaip_get_fpiclk(void)
...
@@ -89,8 +84,7 @@ uint incaip_get_fpiclk(void)
clkCPU
=
incaip_get_cpuclk
();
clkCPU
=
incaip_get_cpuclk
();
switch
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_DIVCR
)
&
0xC
)
switch
(
*
((
volatile
ulong
*
)
INCA_IP_CGU_CGU_DIVCR
)
&
0xC
)
{
{
case
0x4
:
case
0x4
:
return
clkCPU
>>
1
;
/* devided by 2 */
return
clkCPU
>>
1
;
/* devided by 2 */
break
;
break
;
...
@@ -105,11 +99,12 @@ uint incaip_get_fpiclk(void)
...
@@ -105,11 +99,12 @@ uint incaip_get_fpiclk(void)
int
incaip_set_cpuclk
(
void
)
int
incaip_set_cpuclk
(
void
)
{
{
extern
void
ebu_init
(
long
);
extern
void
cgu_init
(
long
);
uchar
tmp
[
64
];
uchar
tmp
[
64
];
ulong
cpuclk
;
ulong
cpuclk
;
if
(
getenv_r
(
"cpuclk"
,
tmp
,
sizeof
(
tmp
))
>
0
)
if
(
getenv_r
(
"cpuclk"
,
tmp
,
sizeof
(
tmp
))
>
0
)
{
{
cpuclk
=
simple_strtoul
(
tmp
,
NULL
,
10
)
*
1000000
;
cpuclk
=
simple_strtoul
(
tmp
,
NULL
,
10
)
*
1000000
;
ebu_init
(
cpuclk
);
ebu_init
(
cpuclk
);
cgu_init
(
cpuclk
);
cgu_init
(
cpuclk
);
...
...
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