Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f1b6aa87
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看板
提交
f1b6aa87
编写于
8月 27, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc32: Convert pmc to OF driver.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
7e7e2f03
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
28 addition
and
29 deletion
+28
-29
arch/sparc/kernel/pmc.c
arch/sparc/kernel/pmc.c
+28
-29
未找到文件。
arch/sparc/kernel/pmc.c
浏览文件 @
f1b6aa87
...
...
@@ -10,9 +10,10 @@
#include <linux/init.h>
#include <linux/miscdevice.h>
#include <linux/pm.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <asm/io.h>
#include <asm/sbus.h>
#include <asm/oplib.h>
#include <asm/uaccess.h>
#include <asm/auxio.h>
...
...
@@ -30,10 +31,9 @@
#define PMC_IDLE_REG 0x00
#define PMC_IDLE_ON 0x01
volatile
static
u8
__iomem
*
regs
;
static
int
pmc_regsize
;
static
u8
__iomem
*
regs
;
#define pmc_readb(offs)
(sbus_readb(regs+offs))
#define pmc_readb(offs) (sbus_readb(regs+offs))
#define pmc_writeb(val, offs) (sbus_writeb(val, regs+offs))
/*
...
...
@@ -53,31 +53,11 @@ void pmc_swift_idle(void)
#endif
}
static
inline
void
pmc_free
(
void
)
static
int
__devinit
pmc_probe
(
struct
of_device
*
op
,
const
struct
of_device_id
*
match
)
{
sbus_iounmap
(
regs
,
pmc_regsize
);
}
static
int
__init
pmc_probe
(
void
)
{
struct
sbus_bus
*
sbus
=
NULL
;
struct
sbus_dev
*
sdev
=
NULL
;
for_each_sbus
(
sbus
)
{
for_each_sbusdev
(
sdev
,
sbus
)
{
if
(
!
strcmp
(
sdev
->
prom_name
,
PMC_OBPNAME
))
{
goto
sbus_done
;
}
}
}
sbus_done:
if
(
!
sdev
)
{
return
-
ENODEV
;
}
pmc_regsize
=
sdev
->
reg_addrs
[
0
].
reg_size
;
regs
=
sbus_ioremap
(
&
sdev
->
resource
[
0
],
0
,
pmc_regsize
,
PMC_OBPNAME
);
regs
=
of_ioremap
(
&
op
->
resource
[
0
],
0
,
resource_size
(
&
op
->
resource
[
0
]),
PMC_OBPNAME
);
if
(
!
regs
)
{
printk
(
KERN_ERR
"%s: unable to map registers
\n
"
,
PMC_DEVNAME
);
return
-
ENODEV
;
...
...
@@ -92,8 +72,27 @@ static int __init pmc_probe(void)
return
0
;
}
static
struct
of_device_id
pmc_match
[]
=
{
{
.
name
=
PMC_OBPNAME
,
},
{},
};
MODULE_DEVICE_TABLE
(
of
,
pmc_match
);
static
struct
of_platform_driver
pmc_driver
=
{
.
name
=
"pmc"
,
.
match_table
=
pmc_match
,
.
probe
=
pmc_probe
,
};
static
int
__init
pmc_init
(
void
)
{
return
of_register_driver
(
&
pmc_driver
,
&
of_bus_type
);
}
/* This driver is not critical to the boot process
* and is easiest to ioremap when SBus is already
* initialized, so we install ourselves thusly:
*/
__initcall
(
pmc_
probe
);
__initcall
(
pmc_
init
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录