Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
a9540d34
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看板
提交
a9540d34
编写于
8月 27, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc: Convert flash driver to OF device probing.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
826b6cfc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
50 addition
and
80 deletion
+50
-80
drivers/sbus/char/flash.c
drivers/sbus/char/flash.c
+50
-80
未找到文件。
drivers/sbus/char/flash.c
浏览文件 @
a9540d34
/* $Id: flash.c,v 1.25 2001/12/21 04:56:16 davem Exp $
* flash.c: Allow mmap access to the OBP Flash, for OBP updates.
/* flash.c: Allow mmap access to the OBP Flash, for OBP updates.
*
* Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
*/
...
...
@@ -15,13 +14,13 @@
#include <linux/smp_lock.h>
#include <linux/spinlock.h>
#include <linux/mm.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <asm/system.h>
#include <asm/uaccess.h>
#include <asm/pgtable.h>
#include <asm/io.h>
#include <asm/sbus.h>
#include <asm/ebus.h>
#include <asm/upa.h>
static
DEFINE_SPINLOCK
(
flash_lock
);
...
...
@@ -161,97 +160,68 @@ static const struct file_operations flash_fops = {
static
struct
miscdevice
flash_dev
=
{
FLASH_MINOR
,
"flash"
,
&
flash_fops
};
static
int
__init
flash_init
(
void
)
static
int
__devinit
flash_probe
(
struct
of_device
*
op
,
const
struct
of_device_id
*
match
)
{
struct
sbus_bus
*
sbus
;
struct
sbus_dev
*
sdev
=
NULL
;
#ifdef CONFIG_PCI
struct
linux_ebus
*
ebus
;
struct
linux_ebus_device
*
edev
=
NULL
;
struct
linux_prom_registers
regs
[
2
];
int
len
,
nregs
;
#endif
int
err
;
for_all_sbusdev
(
sdev
,
sbus
)
{
if
(
!
strcmp
(
sdev
->
prom_name
,
"flashprom"
))
{
if
(
sdev
->
reg_addrs
[
0
].
phys_addr
==
sdev
->
reg_addrs
[
1
].
phys_addr
)
{
flash
.
read_base
=
((
unsigned
long
)
sdev
->
reg_addrs
[
0
].
phys_addr
)
|
(((
unsigned
long
)
sdev
->
reg_addrs
[
0
].
which_io
)
<<
32UL
);
flash
.
read_size
=
sdev
->
reg_addrs
[
0
].
reg_size
;
flash
.
write_base
=
flash
.
read_base
;
flash
.
write_size
=
flash
.
read_size
;
}
else
{
flash
.
read_base
=
((
unsigned
long
)
sdev
->
reg_addrs
[
0
].
phys_addr
)
|
(((
unsigned
long
)
sdev
->
reg_addrs
[
0
].
which_io
)
<<
32UL
);
flash
.
read_size
=
sdev
->
reg_addrs
[
0
].
reg_size
;
flash
.
write_base
=
((
unsigned
long
)
sdev
->
reg_addrs
[
1
].
phys_addr
)
|
(((
unsigned
long
)
sdev
->
reg_addrs
[
1
].
which_io
)
<<
32UL
);
flash
.
write_size
=
sdev
->
reg_addrs
[
1
].
reg_size
;
}
flash
.
busy
=
0
;
break
;
}
}
if
(
!
sdev
)
{
#ifdef CONFIG_PCI
const
struct
linux_prom_registers
*
ebus_regs
;
for_each_ebus
(
ebus
)
{
for_each_ebusdev
(
edev
,
ebus
)
{
if
(
!
strcmp
(
edev
->
prom_node
->
name
,
"flashprom"
))
goto
ebus_done
;
}
}
ebus_done:
if
(
!
edev
)
return
-
ENODEV
;
ebus_regs
=
of_get_property
(
edev
->
prom_node
,
"reg"
,
&
len
);
if
(
!
ebus_regs
||
(
len
%
sizeof
(
regs
[
0
]))
!=
0
)
{
printk
(
"flash: Strange reg property size %d
\n
"
,
len
);
return
-
ENODEV
;
}
nregs
=
len
/
sizeof
(
ebus_regs
[
0
]);
struct
device_node
*
dp
=
op
->
node
;
struct
device_node
*
parent
;
flash
.
read_base
=
edev
->
resource
[
0
].
start
;
flash
.
read_size
=
ebus_regs
[
0
].
reg_size
;
parent
=
dp
->
parent
;
if
(
nregs
==
1
)
{
flash
.
write_base
=
edev
->
resource
[
0
].
start
;
flash
.
write_size
=
ebus_regs
[
0
].
reg_size
;
}
else
if
(
nregs
==
2
)
{
flash
.
write_base
=
edev
->
resource
[
1
].
start
;
flash
.
write_size
=
ebus_regs
[
1
].
reg_size
;
}
else
{
printk
(
"flash: Strange number of regs %d
\n
"
,
nregs
);
return
-
ENODEV
;
}
flash
.
busy
=
0
;
#else
if
(
strcmp
(
parent
->
name
,
"sbus"
)
&&
strcmp
(
parent
->
name
,
"sbi"
)
&&
strcmp
(
parent
->
name
,
"ebus"
))
return
-
ENODEV
;
#endif
flash
.
read_base
=
op
->
resource
[
0
].
start
;
flash
.
read_size
=
resource_size
(
&
op
->
resource
[
0
]);
if
(
op
->
resource
[
1
].
flags
)
{
flash
.
write_base
=
op
->
resource
[
1
].
start
;
flash
.
write_size
=
resource_size
(
&
op
->
resource
[
1
]);
}
else
{
flash
.
write_base
=
op
->
resource
[
0
].
start
;
flash
.
write_size
=
resource_size
(
&
op
->
resource
[
0
]);
}
flash
.
busy
=
0
;
printk
(
"OBP Flash: RD %lx[%lx] WR %lx[%lx]
\n
"
,
printk
(
KERN_INFO
"%s: OBP Flash, RD %lx[%lx] WR %lx[%lx]
\n
"
,
op
->
node
->
full_name
,
flash
.
read_base
,
flash
.
read_size
,
flash
.
write_base
,
flash
.
write_size
);
err
=
misc_register
(
&
flash_dev
);
if
(
err
)
{
printk
(
KERN_ERR
"flash: unable to get misc minor
\n
"
);
return
err
;
}
return
misc_register
(
&
flash_dev
);
}
static
int
__devexit
flash_remove
(
struct
of_device
*
op
)
{
misc_deregister
(
&
flash_dev
);
return
0
;
}
static
struct
of_device_id
flash_match
[]
=
{
{
.
name
=
"flashprom"
,
},
{},
};
MODULE_DEVICE_TABLE
(
of
,
flash_match
);
static
struct
of_platform_driver
flash_driver
=
{
.
name
=
"flash"
,
.
match_table
=
flash_match
,
.
probe
=
flash_probe
,
.
remove
=
__devexit_p
(
flash_remove
),
};
static
int
__init
flash_init
(
void
)
{
return
of_register_driver
(
&
flash_driver
,
&
of_bus_type
);
}
static
void
__exit
flash_cleanup
(
void
)
{
misc_deregister
(
&
flash_dev
);
of_unregister_driver
(
&
flash_driver
);
}
module_init
(
flash_init
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录