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
6ad29246
Commit
6ad29246
authored
Jun 03, 2014
by
Rafael J. Wysocki
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pm-clk'
* pm-clk: clk: new basic clk type for fractional divider
parents
2770b8b1
e2d0e90f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
167 additions
and
0 deletions
+167
-0
drivers/clk/Makefile
drivers/clk/Makefile
+1
-0
drivers/clk/clk-fractional-divider.c
drivers/clk/clk-fractional-divider.c
+135
-0
include/linux/clk-provider.h
include/linux/clk-provider.h
+31
-0
No files found.
drivers/clk/Makefile
View file @
6ad29246
...
...
@@ -8,6 +8,7 @@ obj-$(CONFIG_COMMON_CLK) += clk-fixed-rate.o
obj-$(CONFIG_COMMON_CLK)
+=
clk-gate.o
obj-$(CONFIG_COMMON_CLK)
+=
clk-mux.o
obj-$(CONFIG_COMMON_CLK)
+=
clk-composite.o
obj-$(CONFIG_COMMON_CLK)
+=
clk-fractional-divider.o
# hardware specific clock types
# please keep this section sorted lexicographically by file/directory path name
...
...
drivers/clk/clk-fractional-divider.c
0 → 100644
View file @
6ad29246
/*
* Copyright (C) 2014 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Adjustable fractional divider clock implementation.
* Output rate = (m / n) * parent_rate.
*/
#include <linux/clk-provider.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/gcd.h>
#define to_clk_fd(_hw) container_of(_hw, struct clk_fractional_divider, hw)
static
unsigned
long
clk_fd_recalc_rate
(
struct
clk_hw
*
hw
,
unsigned
long
parent_rate
)
{
struct
clk_fractional_divider
*
fd
=
to_clk_fd
(
hw
);
unsigned
long
flags
=
0
;
u32
val
,
m
,
n
;
u64
ret
;
if
(
fd
->
lock
)
spin_lock_irqsave
(
fd
->
lock
,
flags
);
val
=
clk_readl
(
fd
->
reg
);
if
(
fd
->
lock
)
spin_unlock_irqrestore
(
fd
->
lock
,
flags
);
m
=
(
val
&
fd
->
mmask
)
>>
fd
->
mshift
;
n
=
(
val
&
fd
->
nmask
)
>>
fd
->
nshift
;
ret
=
parent_rate
*
m
;
do_div
(
ret
,
n
);
return
ret
;
}
static
long
clk_fd_round_rate
(
struct
clk_hw
*
hw
,
unsigned
long
rate
,
unsigned
long
*
prate
)
{
struct
clk_fractional_divider
*
fd
=
to_clk_fd
(
hw
);
unsigned
maxn
=
(
fd
->
nmask
>>
fd
->
nshift
)
+
1
;
unsigned
div
;
if
(
!
rate
||
rate
>=
*
prate
)
return
*
prate
;
div
=
gcd
(
*
prate
,
rate
);
while
((
*
prate
/
div
)
>
maxn
)
{
div
<<=
1
;
rate
<<=
1
;
}
return
rate
;
}
static
int
clk_fd_set_rate
(
struct
clk_hw
*
hw
,
unsigned
long
rate
,
unsigned
long
parent_rate
)
{
struct
clk_fractional_divider
*
fd
=
to_clk_fd
(
hw
);
unsigned
long
flags
=
0
;
unsigned
long
div
;
unsigned
n
,
m
;
u32
val
;
div
=
gcd
(
parent_rate
,
rate
);
m
=
rate
/
div
;
n
=
parent_rate
/
div
;
if
(
fd
->
lock
)
spin_lock_irqsave
(
fd
->
lock
,
flags
);
val
=
clk_readl
(
fd
->
reg
);
val
&=
~
(
fd
->
mmask
|
fd
->
nmask
);
val
|=
(
m
<<
fd
->
mshift
)
|
(
n
<<
fd
->
nshift
);
clk_writel
(
val
,
fd
->
reg
);
if
(
fd
->
lock
)
spin_unlock_irqrestore
(
fd
->
lock
,
flags
);
return
0
;
}
const
struct
clk_ops
clk_fractional_divider_ops
=
{
.
recalc_rate
=
clk_fd_recalc_rate
,
.
round_rate
=
clk_fd_round_rate
,
.
set_rate
=
clk_fd_set_rate
,
};
EXPORT_SYMBOL_GPL
(
clk_fractional_divider_ops
);
struct
clk
*
clk_register_fractional_divider
(
struct
device
*
dev
,
const
char
*
name
,
const
char
*
parent_name
,
unsigned
long
flags
,
void
__iomem
*
reg
,
u8
mshift
,
u8
mwidth
,
u8
nshift
,
u8
nwidth
,
u8
clk_divider_flags
,
spinlock_t
*
lock
)
{
struct
clk_fractional_divider
*
fd
;
struct
clk_init_data
init
;
struct
clk
*
clk
;
fd
=
kzalloc
(
sizeof
(
*
fd
),
GFP_KERNEL
);
if
(
!
fd
)
{
dev_err
(
dev
,
"could not allocate fractional divider clk
\n
"
);
return
ERR_PTR
(
-
ENOMEM
);
}
init
.
name
=
name
;
init
.
ops
=
&
clk_fractional_divider_ops
;
init
.
flags
=
flags
|
CLK_IS_BASIC
;
init
.
parent_names
=
parent_name
?
&
parent_name
:
NULL
;
init
.
num_parents
=
parent_name
?
1
:
0
;
fd
->
reg
=
reg
;
fd
->
mshift
=
mshift
;
fd
->
mmask
=
(
BIT
(
mwidth
)
-
1
)
<<
mshift
;
fd
->
nshift
=
nshift
;
fd
->
nmask
=
(
BIT
(
nwidth
)
-
1
)
<<
nshift
;
fd
->
flags
=
clk_divider_flags
;
fd
->
lock
=
lock
;
fd
->
hw
.
init
=
&
init
;
clk
=
clk_register
(
dev
,
&
fd
->
hw
);
if
(
IS_ERR
(
clk
))
kfree
(
fd
);
return
clk
;
}
EXPORT_SYMBOL_GPL
(
clk_register_fractional_divider
);
include/linux/clk-provider.h
View file @
6ad29246
...
...
@@ -413,6 +413,37 @@ struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
const
char
*
parent_name
,
unsigned
long
flags
,
unsigned
int
mult
,
unsigned
int
div
);
/**
* struct clk_fractional_divider - adjustable fractional divider clock
*
* @hw: handle between common and hardware-specific interfaces
* @reg: register containing the divider
* @mshift: shift to the numerator bit field
* @mwidth: width of the numerator bit field
* @nshift: shift to the denominator bit field
* @nwidth: width of the denominator bit field
* @lock: register lock
*
* Clock with adjustable fractional divider affecting its output frequency.
*/
struct
clk_fractional_divider
{
struct
clk_hw
hw
;
void
__iomem
*
reg
;
u8
mshift
;
u32
mmask
;
u8
nshift
;
u32
nmask
;
u8
flags
;
spinlock_t
*
lock
;
};
extern
const
struct
clk_ops
clk_fractional_divider_ops
;
struct
clk
*
clk_register_fractional_divider
(
struct
device
*
dev
,
const
char
*
name
,
const
char
*
parent_name
,
unsigned
long
flags
,
void
__iomem
*
reg
,
u8
mshift
,
u8
mwidth
,
u8
nshift
,
u8
nwidth
,
u8
clk_divider_flags
,
spinlock_t
*
lock
);
/***
* struct clk_composite - aggregate clock of mux, divider and gate clocks
*
...
...
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