Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
84d6bd5e
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
84d6bd5e
编写于
8月 29, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc64: Use generic sun4v RTC driver.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
7a138ede
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
9 addition
and
75 deletion
+9
-75
arch/sparc64/Kconfig
arch/sparc64/Kconfig
+1
-0
arch/sparc64/kernel/time.c
arch/sparc64/kernel/time.c
+8
-75
未找到文件。
arch/sparc64/Kconfig
浏览文件 @
84d6bd5e
...
...
@@ -23,6 +23,7 @@ config SPARC64
select RTC_DRV_M48T59
select RTC_DRV_CMOS
select RTC_DRV_BQ4802
select RTC_DRV_SUN4V
config GENERIC_TIME
bool
...
...
arch/sparc64/kernel/time.c
浏览文件 @
84d6bd5e
...
...
@@ -424,48 +424,6 @@ static int starfire_set_time(u32 val)
return
0
;
}
static
u32
hypervisor_get_time
(
void
)
{
unsigned
long
ret
,
time
;
int
retries
=
10000
;
retry:
ret
=
sun4v_tod_get
(
&
time
);
if
(
ret
==
HV_EOK
)
return
time
;
if
(
ret
==
HV_EWOULDBLOCK
)
{
if
(
--
retries
>
0
)
{
udelay
(
100
);
goto
retry
;
}
printk
(
KERN_WARNING
"SUN4V: tod_get() timed out.
\n
"
);
return
0
;
}
printk
(
KERN_WARNING
"SUN4V: tod_get() not supported.
\n
"
);
return
0
;
}
static
int
hypervisor_set_time
(
u32
secs
)
{
unsigned
long
ret
;
int
retries
=
10000
;
retry:
ret
=
sun4v_tod_set
(
secs
);
if
(
ret
==
HV_EOK
)
return
0
;
if
(
ret
==
HV_EWOULDBLOCK
)
{
if
(
--
retries
>
0
)
{
udelay
(
100
);
goto
retry
;
}
printk
(
KERN_WARNING
"SUN4V: tod_set() timed out.
\n
"
);
return
-
EAGAIN
;
}
printk
(
KERN_WARNING
"SUN4V: tod_set() not supported.
\n
"
);
return
-
EOPNOTSUPP
;
}
unsigned
long
cmos_regs
;
EXPORT_SYMBOL
(
cmos_regs
);
...
...
@@ -644,6 +602,11 @@ static struct of_platform_driver mostek_driver = {
},
};
static
struct
platform_device
rtc_sun4v_device
=
{
.
name
=
"rtc-sun4v"
,
.
id
=
-
1
,
};
static
int
__init
clock_init
(
void
)
{
if
(
this_is_starfire
)
{
...
...
@@ -653,13 +616,8 @@ static int __init clock_init(void)
-
xtime
.
tv_sec
,
-
xtime
.
tv_nsec
);
return
0
;
}
if
(
tlb_type
==
hypervisor
)
{
xtime
.
tv_sec
=
hypervisor_get_time
();
xtime
.
tv_nsec
=
(
INITIAL_JIFFIES
%
HZ
)
*
(
NSEC_PER_SEC
/
HZ
);
set_normalized_timespec
(
&
wall_to_monotonic
,
-
xtime
.
tv_sec
,
-
xtime
.
tv_nsec
);
return
0
;
}
if
(
tlb_type
==
hypervisor
)
return
platform_device_register
(
&
rtc_sun4v_device
);
(
void
)
of_register_driver
(
&
rtc_driver
,
&
of_platform_bus_type
);
(
void
)
of_register_driver
(
&
mostek_driver
,
&
of_platform_bus_type
);
...
...
@@ -1037,24 +995,6 @@ static int starfire_set_rtc_time(struct rtc_time *time)
return
starfire_set_time
(
seconds
);
}
static
void
hypervisor_get_rtc_time
(
struct
rtc_time
*
time
)
{
u32
seconds
=
hypervisor_get_time
();
to_tm
(
seconds
,
time
);
time
->
tm_year
-=
1900
;
time
->
tm_mon
-=
1
;
}
static
int
hypervisor_set_rtc_time
(
struct
rtc_time
*
time
)
{
u32
seconds
=
mktime
(
time
->
tm_year
+
1900
,
time
->
tm_mon
+
1
,
time
->
tm_mday
,
time
->
tm_hour
,
time
->
tm_min
,
time
->
tm_sec
);
return
hypervisor_set_time
(
seconds
);
}
struct
mini_rtc_ops
{
void
(
*
get_rtc_time
)(
struct
rtc_time
*
);
int
(
*
set_rtc_time
)(
struct
rtc_time
*
);
...
...
@@ -1065,11 +1005,6 @@ static struct mini_rtc_ops starfire_rtc_ops = {
.
set_rtc_time
=
starfire_set_rtc_time
,
};
static
struct
mini_rtc_ops
hypervisor_rtc_ops
=
{
.
get_rtc_time
=
hypervisor_get_rtc_time
,
.
set_rtc_time
=
hypervisor_set_rtc_time
,
};
static
struct
mini_rtc_ops
*
mini_rtc_ops
;
static
inline
void
mini_get_rtc_time
(
struct
rtc_time
*
time
)
...
...
@@ -1192,9 +1127,7 @@ static int __init rtc_mini_init(void)
{
int
retval
;
if
(
tlb_type
==
hypervisor
)
mini_rtc_ops
=
&
hypervisor_rtc_ops
;
else
if
(
this_is_starfire
)
if
(
this_is_starfire
)
mini_rtc_ops
=
&
starfire_rtc_ops
;
else
return
-
ENODEV
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录