Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9bf5b2ef
Commit
9bf5b2ef
authored
Mar 01, 2010
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: Indirect round/set_rate operations through clk structure
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
3081e43b
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
76 additions
and
23 deletions
+76
-23
arch/arm/mach-integrator/impd1.c
arch/arm/mach-integrator/impd1.c
+8
-2
arch/arm/mach-integrator/include/mach/clkdev.h
arch/arm/mach-integrator/include/mach/clkdev.h
+2
-2
arch/arm/mach-integrator/integrator_cp.c
arch/arm/mach-integrator/integrator_cp.c
+7
-1
arch/arm/mach-realview/core.c
arch/arm/mach-realview/core.c
+7
-1
arch/arm/mach-realview/include/mach/clkdev.h
arch/arm/mach-realview/include/mach/clkdev.h
+2
-2
arch/arm/mach-versatile/core.c
arch/arm/mach-versatile/core.c
+7
-1
arch/arm/mach-versatile/include/mach/clkdev.h
arch/arm/mach-versatile/include/mach/clkdev.h
+2
-2
arch/arm/plat-versatile/clock.c
arch/arm/plat-versatile/clock.c
+26
-12
arch/arm/plat-versatile/include/plat/clock.h
arch/arm/plat-versatile/include/plat/clock.h
+15
-0
No files found.
arch/arm/mach-integrator/impd1.c
View file @
9bf5b2ef
...
...
@@ -71,6 +71,12 @@ static void impd1_setvco(struct clk *clk, struct icst_vco vco)
#endif
}
static
const
struct
clk_ops
impd1_clk_ops
=
{
.
round
=
icst_clk_round
,
.
set
=
icst_clk_set
,
.
setvco
=
impd1_setvco
,
};
void
impd1_tweak_control
(
struct
device
*
dev
,
u32
mask
,
u32
val
)
{
struct
impd1_module
*
impd1
=
dev_get_drvdata
(
dev
);
...
...
@@ -366,10 +372,10 @@ static int impd1_probe(struct lm_device *dev)
(
unsigned
long
)
dev
->
resource
.
start
);
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
impd1
->
vcos
);
i
++
)
{
impd1
->
vcos
[
i
].
ops
=
&
impd1_clk_ops
,
impd1
->
vcos
[
i
].
owner
=
THIS_MODULE
,
impd1
->
vcos
[
i
].
params
=
&
impd1_vco_params
,
impd1
->
vcos
[
i
].
data
=
impd1
,
impd1
->
vcos
[
i
].
setvco
=
impd1_setvco
;
impd1
->
vcos
[
i
].
data
=
impd1
;
}
impd1
->
vcos
[
0
].
vcoreg
=
impd1
->
base
+
IMPD1_OSC1
;
impd1
->
vcos
[
1
].
vcoreg
=
impd1
->
base
+
IMPD1_OSC2
;
...
...
arch/arm/mach-integrator/include/mach/clkdev.h
View file @
9bf5b2ef
...
...
@@ -2,14 +2,14 @@
#define __ASM_MACH_CLKDEV_H
#include <linux/module.h>
#include <
asm/hardware/icst
.h>
#include <
plat/clock
.h>
struct
clk
{
unsigned
long
rate
;
const
struct
clk_ops
*
ops
;
struct
module
*
owner
;
const
struct
icst_params
*
params
;
void
__iomem
*
vcoreg
;
void
(
*
setvco
)(
struct
clk
*
,
struct
icst_vco
vco
);
void
*
data
;
};
...
...
arch/arm/mach-integrator/integrator_cp.c
View file @
9bf5b2ef
...
...
@@ -293,10 +293,16 @@ static void cp_auxvco_set(struct clk *clk, struct icst_vco vco)
writel
(
0
,
CM_LOCK
);
}
static
const
struct
clk_ops
cp_auxclk_ops
=
{
.
round
=
icst_clk_round
,
.
set
=
icst_clk_set
,
.
setvco
=
cp_auxvco_set
,
};
static
struct
clk
cp_auxclk
=
{
.
ops
=
&
cp_auxclk_ops
,
.
params
=
&
cp_auxvco_params
,
.
vcoreg
=
CM_AUXOSC
,
.
setvco
=
cp_auxvco_set
,
};
static
struct
clk_lookup
cp_lookups
[]
=
{
...
...
arch/arm/mach-realview/core.c
View file @
9bf5b2ef
...
...
@@ -281,9 +281,15 @@ static void realview_oscvco_set(struct clk *clk, struct icst_vco vco)
writel
(
0
,
sys_lock
);
}
static
const
struct
clk_ops
oscvco_clk_ops
=
{
.
round
=
icst_clk_round
,
.
set
=
icst_clk_set
,
.
setvco
=
realview_oscvco_set
,
};
static
struct
clk
oscvco_clk
=
{
.
ops
=
&
oscvco_clk_ops
,
.
params
=
&
realview_oscvco_params
,
.
setvco
=
realview_oscvco_set
,
};
/*
...
...
arch/arm/mach-realview/include/mach/clkdev.h
View file @
9bf5b2ef
#ifndef __ASM_MACH_CLKDEV_H
#define __ASM_MACH_CLKDEV_H
#include <
asm/hardware/icst
.h>
#include <
plat/clock
.h>
struct
clk
{
unsigned
long
rate
;
const
struct
clk_ops
*
ops
;
const
struct
icst_params
*
params
;
void
__iomem
*
vcoreg
;
void
(
*
setvco
)(
struct
clk
*
,
struct
icst_vco
vco
);
};
#define __clk_get(clk) ({ 1; })
...
...
arch/arm/mach-versatile/core.c
View file @
9bf5b2ef
...
...
@@ -381,9 +381,15 @@ static void versatile_oscvco_set(struct clk *clk, struct icst_vco vco)
writel
(
0
,
sys_lock
);
}
static
const
struct
clk_ops
osc4_clk_ops
=
{
.
round
=
icst_clk_round
,
.
set
=
icst_clk_set
,
.
setvco
=
versatile_oscvco_set
,
};
static
struct
clk
osc4_clk
=
{
.
ops
=
&
osc4_clk_ops
,
.
params
=
&
versatile_oscvco_params
,
.
setvco
=
versatile_oscvco_set
,
};
/*
...
...
arch/arm/mach-versatile/include/mach/clkdev.h
View file @
9bf5b2ef
#ifndef __ASM_MACH_CLKDEV_H
#define __ASM_MACH_CLKDEV_H
#include <
asm/hardware/icst
.h>
#include <
plat/clock
.h>
struct
clk
{
unsigned
long
rate
;
const
struct
clk_ops
*
ops
;
const
struct
icst_params
*
params
;
void
__iomem
*
vcoreg
;
void
(
*
setvco
)(
struct
clk
*
,
struct
icst_vco
vco
);
};
#define __clk_get(clk) ({ 1; })
...
...
arch/arm/plat-versatile/clock.c
View file @
9bf5b2ef
...
...
@@ -37,24 +37,38 @@ EXPORT_SYMBOL(clk_get_rate);
long
clk_round_rate
(
struct
clk
*
clk
,
unsigned
long
rate
)
{
struct
icst_vco
vco
;
vco
=
icst_hz_to_vco
(
clk
->
params
,
rate
);
return
icst_hz
(
clk
->
params
,
vco
);
long
ret
=
-
EIO
;
if
(
clk
->
ops
&&
clk
->
ops
->
round
)
ret
=
clk
->
ops
->
round
(
clk
,
rate
);
return
ret
;
}
EXPORT_SYMBOL
(
clk_round_rate
);
int
clk_set_rate
(
struct
clk
*
clk
,
unsigned
long
rate
)
{
int
ret
=
-
EIO
;
if
(
clk
->
ops
&&
clk
->
ops
->
set
)
ret
=
clk
->
ops
->
set
(
clk
,
rate
);
return
ret
;
}
EXPORT_SYMBOL
(
clk_set_rate
);
long
icst_clk_round
(
struct
clk
*
clk
,
unsigned
long
rate
)
{
struct
icst_vco
vco
;
vco
=
icst_hz_to_vco
(
clk
->
params
,
rate
);
return
icst_hz
(
clk
->
params
,
vco
);
}
EXPORT_SYMBOL
(
icst_clk_round
);
if
(
clk
->
setvco
)
{
int
icst_clk_set
(
struct
clk
*
clk
,
unsigned
long
rate
)
{
struct
icst_vco
vco
;
vco
=
icst_hz_to_vco
(
clk
->
params
,
rate
);
clk
->
rate
=
icst_hz
(
clk
->
params
,
vco
);
clk
->
setvco
(
clk
,
vco
);
ret
=
0
;
}
return
ret
;
clk
->
ops
->
setvco
(
clk
,
vco
);
return
0
;
}
EXPORT_SYMBOL
(
clk_set_rate
);
EXPORT_SYMBOL
(
icst_clk_set
);
arch/arm/plat-versatile/include/plat/clock.h
0 → 100644
View file @
9bf5b2ef
#ifndef PLAT_CLOCK_H
#define PLAT_CLOCK_H
#include <asm/hardware/icst.h>
struct
clk_ops
{
long
(
*
round
)(
struct
clk
*
,
unsigned
long
);
int
(
*
set
)(
struct
clk
*
,
unsigned
long
);
void
(
*
setvco
)(
struct
clk
*
,
struct
icst_vco
);
};
int
icst_clk_set
(
struct
clk
*
,
unsigned
long
);
long
icst_clk_round
(
struct
clk
*
,
unsigned
long
);
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment