Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
ae696fd5
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ae696fd5
编写于
11月 30, 2008
作者:
R
Russell King
提交者:
Russell King
11月 30, 2008
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM] ep93xx: convert to clkdev and match clocks by struct device where possible
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
5e1dbdb4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
45 deletion
+31
-45
arch/arm/Kconfig
arch/arm/Kconfig
+1
-0
arch/arm/mach-ep93xx/clock.c
arch/arm/mach-ep93xx/clock.c
+23
-45
arch/arm/mach-ep93xx/include/mach/clkdev.h
arch/arm/mach-ep93xx/include/mach/clkdev.h
+7
-0
未找到文件。
arch/arm/Kconfig
浏览文件 @
ae696fd5
...
...
@@ -276,6 +276,7 @@ config ARCH_EP93XX
select ARM_VIC
select GENERIC_GPIO
select HAVE_CLK
select COMMON_CLKDEV
select ARCH_REQUIRE_GPIOLIB
help
This enables support for the Cirrus EP93xx series of CPUs.
...
...
arch/arm/mach-ep93xx/clock.c
浏览文件 @
ae696fd5
...
...
@@ -16,11 +16,12 @@
#include <linux/module.h>
#include <linux/string.h>
#include <linux/io.h>
#include <asm/clkdev.h>
#include <asm/div64.h>
#include <mach/hardware.h>
struct
clk
{
char
*
name
;
unsigned
long
rate
;
int
users
;
u32
enable_reg
;
...
...
@@ -28,53 +29,33 @@ struct clk {
};
static
struct
clk
clk_uart
=
{
.
name
=
"UARTCLK"
,
.
rate
=
14745600
,
};
static
struct
clk
clk_pll1
=
{
.
name
=
"pll1"
,
};
static
struct
clk
clk_f
=
{
.
name
=
"fclk"
,
};
static
struct
clk
clk_h
=
{
.
name
=
"hclk"
,
};
static
struct
clk
clk_p
=
{
.
name
=
"pclk"
,
};
static
struct
clk
clk_pll2
=
{
.
name
=
"pll2"
,
};
static
struct
clk
clk_pll1
;
static
struct
clk
clk_f
;
static
struct
clk
clk_h
;
static
struct
clk
clk_p
;
static
struct
clk
clk_pll2
;
static
struct
clk
clk_usb_host
=
{
.
name
=
"usb_host"
,
.
enable_reg
=
EP93XX_SYSCON_CLOCK_CONTROL
,
.
enable_mask
=
EP93XX_SYSCON_CLOCK_USH_EN
,
};
static
struct
clk
*
clocks
[]
=
{
&
clk_uart
,
&
clk_pll1
,
&
clk_f
,
&
clk_h
,
&
clk_p
,
&
clk_pll2
,
&
clk_usb_host
,
#define INIT_CK(dev,con,ck) \
{ .dev_id = dev, .con_id = con, .clk = ck }
static
struct
clk_lookup
clocks
[]
=
{
INIT_CK
(
"apb:uart1"
,
NULL
,
&
clk_uart
),
INIT_CK
(
"apb:uart2"
,
NULL
,
&
clk_uart
),
INIT_CK
(
"apb:uart3"
,
NULL
,
&
clk_uart
),
INIT_CK
(
NULL
,
"pll1"
,
&
clk_pll1
),
INIT_CK
(
NULL
,
"fclk"
,
&
clk_f
),
INIT_CK
(
NULL
,
"hclk"
,
&
clk_h
),
INIT_CK
(
NULL
,
"pclk"
,
&
clk_p
),
INIT_CK
(
NULL
,
"pll2"
,
&
clk_pll2
),
INIT_CK
(
NULL
,
"usb_host"
,
&
clk_usb_host
),
};
struct
clk
*
clk_get
(
struct
device
*
dev
,
const
char
*
id
)
{
int
i
;
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
clocks
);
i
++
)
{
if
(
!
strcmp
(
clocks
[
i
]
->
name
,
id
))
return
clocks
[
i
];
}
return
ERR_PTR
(
-
ENOENT
);
}
EXPORT_SYMBOL
(
clk_get
);
int
clk_enable
(
struct
clk
*
clk
)
{
...
...
@@ -106,12 +87,6 @@ unsigned long clk_get_rate(struct clk *clk)
}
EXPORT_SYMBOL
(
clk_get_rate
);
void
clk_put
(
struct
clk
*
clk
)
{
}
EXPORT_SYMBOL
(
clk_put
);
static
char
fclk_divisors
[]
=
{
1
,
2
,
4
,
8
,
16
,
1
,
1
,
1
};
static
char
hclk_divisors
[]
=
{
1
,
2
,
4
,
5
,
6
,
8
,
16
,
32
};
...
...
@@ -138,6 +113,7 @@ static unsigned long calc_pll_rate(u32 config_word)
static
int
__init
ep93xx_clock_init
(
void
)
{
u32
value
;
int
i
;
value
=
__raw_readl
(
EP93XX_SYSCON_CLOCK_SET1
);
if
(
!
(
value
&
0x00800000
))
{
/* PLL1 bypassed? */
...
...
@@ -165,6 +141,8 @@ static int __init ep93xx_clock_init(void)
clk_f
.
rate
/
1000000
,
clk_h
.
rate
/
1000000
,
clk_p
.
rate
/
1000000
);
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
clocks
);
i
++
)
clkdev_add
(
&
clocks
[
i
]);
return
0
;
}
arch_initcall
(
ep93xx_clock_init
);
arch/arm/mach-ep93xx/include/mach/clkdev.h
0 → 100644
浏览文件 @
ae696fd5
#ifndef __ASM_MACH_CLKDEV_H
#define __ASM_MACH_CLKDEV_H
#define __clk_get(clk) ({ 1; })
#define __clk_put(clk) do { } while (0)
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录