Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
10a104f9
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
10a104f9
编写于
8月 27, 2008
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sparc64: Convert SBUS floppy probing to use OF device objects.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
237f8aaf
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
18 deletion
+27
-18
arch/sparc/include/asm/floppy_64.h
arch/sparc/include/asm/floppy_64.h
+27
-18
未找到文件。
arch/sparc/include/asm/floppy_64.h
浏览文件 @
10a104f9
/* floppy.h: Sparc specific parts of the Floppy driver.
*
* Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net)
* Copyright (C) 1996, 2007
, 2008
David S. Miller (davem@davemloft.net)
* Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
*
* Ultra/PCI support added: Sep 1997 Eddie C. Dost (ecd@skynet.be)
...
...
@@ -11,6 +11,8 @@
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <asm/page.h>
#include <asm/pgtable.h>
...
...
@@ -18,7 +20,6 @@
#include <asm/idprom.h>
#include <asm/oplib.h>
#include <asm/auxio.h>
#include <asm/sbus.h>
#include <asm/irq.h>
...
...
@@ -50,7 +51,7 @@ struct sun_flpy_controller {
/* You'll only ever find one controller on an Ultra anyways. */
static
struct
sun_flpy_controller
*
sun_fdc
=
(
struct
sun_flpy_controller
*
)
-
1
;
unsigned
long
fdc_status
;
static
struct
sbus_dev
*
floppy_sdev
=
NULL
;
static
struct
of_device
*
floppy_op
=
NULL
;
struct
sun_floppy_ops
{
unsigned
char
(
*
fd_inb
)
(
unsigned
long
port
);
...
...
@@ -559,22 +560,28 @@ static int __init ebus_fdthree_p(struct linux_ebus_device *edev)
static
unsigned
long
__init
sun_floppy_init
(
void
)
{
char
state
[
128
];
struct
sbus_bus
*
bus
;
struct
sbus_dev
*
sdev
=
NULL
;
static
int
initialized
=
0
;
struct
device_node
*
dp
;
struct
of_device
*
op
;
const
char
*
prop
;
char
state
[
128
];
if
(
initialized
)
return
sun_floppy_types
[
0
];
initialized
=
1
;
for_all_sbusdev
(
sdev
,
bus
)
{
if
(
!
strcmp
(
sdev
->
prom_name
,
"SUNW,fdtwo"
))
op
=
NULL
;
for_each_node_by_name
(
dp
,
"SUNW,fdtwo"
)
{
if
(
strcmp
(
dp
->
parent
->
name
,
"sbus"
))
continue
;
op
=
of_find_device_by_node
(
dp
);
if
(
op
)
break
;
}
if
(
sdev
)
{
floppy_
sdev
=
sdev
;
FLOPPY_IRQ
=
sdev
->
irqs
[
0
];
if
(
op
)
{
floppy_
op
=
op
;
FLOPPY_IRQ
=
op
->
irqs
[
0
];
}
else
{
#ifdef CONFIG_PCI
struct
linux_ebus
*
ebus
;
...
...
@@ -593,7 +600,9 @@ static unsigned long __init sun_floppy_init(void)
if
(
!
edev
)
return
0
;
state_prop
=
of_get_property
(
edev
->
prom_node
,
"status"
,
NULL
);
op
=
&
edev
->
ofdev
;
state_prop
=
of_get_property
(
op
->
node
,
"status"
,
NULL
);
if
(
state_prop
&&
!
strncmp
(
state_prop
,
"disabled"
,
8
))
return
0
;
...
...
@@ -720,22 +729,22 @@ static unsigned long __init sun_floppy_init(void)
return
0
;
#endif
}
pro
m_getproperty
(
sdev
->
prom_node
,
"status"
,
state
,
sizeof
(
state
)
);
if
(
!
strncmp
(
state
,
"disabled"
,
8
))
pro
p
=
of_get_property
(
op
->
node
,
"status"
,
NULL
);
if
(
prop
&&
!
strncmp
(
state
,
"disabled"
,
8
))
return
0
;
/*
* We cannot do
sbus
_ioremap here: it does request_region,
* We cannot do
of
_ioremap here: it does request_region,
* which the generic floppy driver tries to do once again.
* But we must use the sdev resource values as they have
* had parent ranges applied.
*/
sun_fdc
=
(
struct
sun_flpy_controller
*
)
(
sdev
->
resource
[
0
].
start
+
((
sdev
->
resource
[
0
].
flags
&
0x1ffUL
)
<<
32UL
));
(
op
->
resource
[
0
].
start
+
((
op
->
resource
[
0
].
flags
&
0x1ffUL
)
<<
32UL
));
/* Last minute sanity check... */
if
(
sbus_readb
(
&
sun_fdc
->
status1_82077
)
==
0xff
)
{
if
(
sbus_readb
(
&
sun_fdc
->
status1_82077
)
==
0xff
)
{
sun_fdc
=
(
struct
sun_flpy_controller
*
)
-
1
;
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录