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
146b468e
Commit
146b468e
authored
10 years ago
by
Tom Rini
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-sparc
parents
5146fc2b
4148b3d0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arch/sparc/cpu/leon2/cpu_init.c
+14
-8
14 additions, 8 deletions
arch/sparc/cpu/leon2/cpu_init.c
arch/sparc/cpu/leon3/cpu_init.c
+14
-8
14 additions, 8 deletions
arch/sparc/cpu/leon3/cpu_init.c
with
28 additions
and
16 deletions
arch/sparc/cpu/leon2/cpu_init.c
+
14
−
8
View file @
146b468e
...
@@ -13,6 +13,9 @@
...
@@ -13,6 +13,9 @@
#include
<config.h>
#include
<config.h>
#define TIMER_BASE_CLK 1000000
#define US_PER_TICK (1000000 / CONFIG_SYS_HZ)
DECLARE_GLOBAL_DATA_PTR
;
DECLARE_GLOBAL_DATA_PTR
;
/* reset CPU (jump to 0, without reset) */
/* reset CPU (jump to 0, without reset) */
...
@@ -90,7 +93,7 @@ void cpu_wait_ticks(unsigned long ticks)
...
@@ -90,7 +93,7 @@ void cpu_wait_ticks(unsigned long ticks)
while
(
get_timer
(
start
)
<
ticks
)
;
while
(
get_timer
(
start
)
<
ticks
)
;
}
}
/* initiate and setup timer0 interrupt to 1MHz
/* initiate and setup timer0 interrupt to
configured HZ. Base clock is
1MHz
.
* Return irq number for timer int or a negative number for
* Return irq number for timer int or a negative number for
* dealing with self
* dealing with self
*/
*/
...
@@ -98,28 +101,31 @@ int timer_interrupt_init_cpu(void)
...
@@ -98,28 +101,31 @@ int timer_interrupt_init_cpu(void)
{
{
LEON2_regs
*
leon2
=
(
LEON2_regs
*
)
LEON2_PREGS
;
LEON2_regs
*
leon2
=
(
LEON2_regs
*
)
LEON2_PREGS
;
/*
1ms ticks
*/
/*
SYS_HZ ticks per second
*/
leon2
->
Timer_Counter_1
=
0
;
leon2
->
Timer_Counter_1
=
0
;
leon2
->
Timer_Reload_1
=
999
;
/* (((1000000 / 100) - 1)) */
leon2
->
Timer_Reload_1
=
(
TIMER_BASE_CLK
/
CONFIG_SYS_HZ
)
-
1
;
leon2
->
Timer_Control_1
=
leon2
->
Timer_Control_1
=
(
LEON2_TIMER_CTRL_EN
|
LEON2_TIMER_CTRL_RS
|
LEON2_TIMER_CTRL_LD
);
(
LEON2_TIMER_CTRL_EN
|
LEON2_TIMER_CTRL_RS
|
LEON2_TIMER_CTRL_LD
);
return
LEON2_TIMER1_IRQNO
;
return
LEON2_TIMER1_IRQNO
;
}
}
ulong
get_tbclk
(
void
)
{
return
TIMER_BASE_CLK
;
}
/*
/*
* This function is intended for SHORT delays only.
* This function is intended for SHORT delays only.
*/
*/
unsigned
long
cpu_usec2ticks
(
unsigned
long
usec
)
unsigned
long
cpu_usec2ticks
(
unsigned
long
usec
)
{
{
/* timer set to 1kHz ==> 1 clk tick = 1 msec */
if
(
usec
<
US_PER_TICK
)
if
(
usec
<
1000
)
return
1
;
return
1
;
return
(
usec
/
1000
)
;
return
usec
/
US_PER_TICK
;
}
}
unsigned
long
cpu_ticks2usec
(
unsigned
long
ticks
)
unsigned
long
cpu_ticks2usec
(
unsigned
long
ticks
)
{
{
/* 1tick = 1usec */
return
ticks
*
US_PER_TICK
;
return
ticks
*
1000
;
}
}
This diff is collapsed.
Click to expand it.
arch/sparc/cpu/leon3/cpu_init.c
+
14
−
8
View file @
146b468e
...
@@ -14,6 +14,9 @@
...
@@ -14,6 +14,9 @@
#include
<config.h>
#include
<config.h>
#define TIMER_BASE_CLK 1000000
#define US_PER_TICK (1000000 / CONFIG_SYS_HZ)
DECLARE_GLOBAL_DATA_PTR
;
DECLARE_GLOBAL_DATA_PTR
;
/* reset CPU (jump to 0, without reset) */
/* reset CPU (jump to 0, without reset) */
...
@@ -203,15 +206,15 @@ void cpu_wait_ticks(unsigned long ticks)
...
@@ -203,15 +206,15 @@ void cpu_wait_ticks(unsigned long ticks)
while
(
get_timer
(
start
)
<
ticks
)
;
while
(
get_timer
(
start
)
<
ticks
)
;
}
}
/* initiate and setup timer0 interrupt to 1MHz
/* initiate and setup timer0 interrupt to
configured HZ. Base clock is
1MHz
.
* Return irq number for timer int or a negative number for
* Return irq number for timer int or a negative number for
* dealing with self
* dealing with self
*/
*/
int
timer_interrupt_init_cpu
(
void
)
int
timer_interrupt_init_cpu
(
void
)
{
{
/*
1ms ticks
*/
/*
SYS_HZ ticks per second
*/
gptimer
->
e
[
0
].
val
=
0
;
gptimer
->
e
[
0
].
val
=
0
;
gptimer
->
e
[
0
].
rld
=
999
;
/* (((1000000 / 100) - 1)) */
gptimer
->
e
[
0
].
rld
=
(
TIMER_BASE_CLK
/
CONFIG_SYS_HZ
)
-
1
;
gptimer
->
e
[
0
].
ctrl
=
gptimer
->
e
[
0
].
ctrl
=
(
LEON3_GPTIMER_EN
|
(
LEON3_GPTIMER_EN
|
LEON3_GPTIMER_RL
|
LEON3_GPTIMER_LD
|
LEON3_GPTIMER_IRQEN
);
LEON3_GPTIMER_RL
|
LEON3_GPTIMER_LD
|
LEON3_GPTIMER_IRQEN
);
...
@@ -219,19 +222,22 @@ int timer_interrupt_init_cpu(void)
...
@@ -219,19 +222,22 @@ int timer_interrupt_init_cpu(void)
return
gptimer_irq
;
return
gptimer_irq
;
}
}
ulong
get_tbclk
(
void
)
{
return
TIMER_BASE_CLK
;
}
/*
/*
* This function is intended for SHORT delays only.
* This function is intended for SHORT delays only.
*/
*/
unsigned
long
cpu_usec2ticks
(
unsigned
long
usec
)
unsigned
long
cpu_usec2ticks
(
unsigned
long
usec
)
{
{
/* timer set to 1kHz ==> 1 clk tick = 1 msec */
if
(
usec
<
US_PER_TICK
)
if
(
usec
<
1000
)
return
1
;
return
1
;
return
(
usec
/
1000
)
;
return
usec
/
US_PER_TICK
;
}
}
unsigned
long
cpu_ticks2usec
(
unsigned
long
ticks
)
unsigned
long
cpu_ticks2usec
(
unsigned
long
ticks
)
{
{
/* 1tick = 1usec */
return
ticks
*
US_PER_TICK
;
return
ticks
*
1000
;
}
}
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