Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
5d4c51f6
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看板
提交
5d4c51f6
编写于
5月 26, 2007
作者:
A
Alessandro Zummo
提交者:
Jeff Garzik
7月 09, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libata] pata_ixp4xx: convert to new EH
Signed-off-by:
N
Jeff Garzik
<
jeff@garzik.org
>
上级
49de0ac8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
31 addition
and
42 deletion
+31
-42
drivers/ata/pata_ixp4xx_cf.c
drivers/ata/pata_ixp4xx_cf.c
+31
-42
未找到文件。
drivers/ata/pata_ixp4xx_cf.c
浏览文件 @
5d4c51f6
/*
* ixp4xx PATA/Compact Flash driver
* Copyright (
c) 2006
Tower Technologies
* Copyright (
C) 2006-07
Tower Technologies
* Author: Alessandro Zummo <a.zummo@towertech.it>
*
* An ATA driver to handle a Compact Flash connected
* to the ixp4xx expansion bus in TrueIDE mode. The CF
* must have it chip selects connected to two CS lines
* on the ixp4xx. The interrupt line is optional, if not
* specified the driver will run in polling mode.
* on the ixp4xx. In the irq is not available, you might
* want to modify both this driver and libata to run in
* polling mode.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
...
...
@@ -23,7 +24,7 @@
#include <scsi/scsi_host.h>
#define DRV_NAME "pata_ixp4xx_cf"
#define DRV_VERSION "0.
1.3
"
#define DRV_VERSION "0.
2
"
static
int
ixp4xx_set_mode
(
struct
ata_port
*
ap
,
struct
ata_device
**
error
)
{
...
...
@@ -42,13 +43,6 @@ static int ixp4xx_set_mode(struct ata_port *ap, struct ata_device **error)
return
0
;
}
static
void
ixp4xx_phy_reset
(
struct
ata_port
*
ap
)
{
ap
->
cbl
=
ATA_CBL_PATA40
;
ata_port_probe
(
ap
);
ata_bus_reset
(
ap
);
}
static
void
ixp4xx_mmio_data_xfer
(
struct
ata_device
*
adev
,
unsigned
char
*
buf
,
unsigned
int
buflen
,
int
write_data
)
{
...
...
@@ -92,10 +86,6 @@ static void ixp4xx_mmio_data_xfer(struct ata_device *adev, unsigned char *buf,
*
data
->
cs0_cfg
|=
0x01
;
}
static
void
ixp4xx_irq_clear
(
struct
ata_port
*
ap
)
{
}
static
struct
scsi_host_template
ixp4xx_sht
=
{
.
module
=
THIS_MODULE
,
.
name
=
DRV_NAME
,
...
...
@@ -115,29 +105,32 @@ static struct scsi_host_template ixp4xx_sht = {
};
static
struct
ata_port_operations
ixp4xx_port_ops
=
{
.
set_mode
=
ixp4xx_set_mode
,
.
mode_filter
=
ata_pci_default_filter
,
.
port_disable
=
ata_port_disable
,
.
tf_load
=
ata_tf_load
,
.
tf_read
=
ata_tf_read
,
.
check_status
=
ata_check_status
,
.
exec_command
=
ata_exec_command
,
.
dev_select
=
ata_std_dev_select
,
.
qc_prep
=
ata_qc_prep
,
.
qc_issue
=
ata_qc_issue_prot
,
.
eng_timeout
=
ata_eng_timeout
,
.
data_xfer
=
ixp4xx_mmio_data_xfer
,
.
cable_detect
=
ata_cable_40wire
,
.
irq_clear
=
ixp4xx_irq_clear
,
.
irq_on
=
ata_irq_on
,
.
irq_ack
=
ata_irq_ack
,
.
port_start
=
ata_port_start
,
.
phy_reset
=
ixp4xx_phy_reset
,
.
set_mode
=
ixp4xx_set_mode
,
.
mode_filter
=
ata_pci_default_filter
,
.
port_disable
=
ata_port_disable
,
.
tf_load
=
ata_tf_load
,
.
tf_read
=
ata_tf_read
,
.
exec_command
=
ata_exec_command
,
.
check_status
=
ata_check_status
,
.
dev_select
=
ata_std_dev_select
,
.
freeze
=
ata_bmdma_freeze
,
.
thaw
=
ata_bmdma_thaw
,
.
error_handler
=
ata_bmdma_error_handler
,
.
post_internal_cmd
=
ata_bmdma_post_internal_cmd
,
.
qc_prep
=
ata_qc_prep
,
.
qc_issue
=
ata_qc_issue_prot
,
.
data_xfer
=
ixp4xx_mmio_data_xfer
,
.
cable_detect
=
ata_cable_40wire
,
.
irq_handler
=
ata_interrupt
,
.
irq_clear
=
ata_bmdma_irq_clear
,
.
irq_on
=
ata_irq_on
,
.
irq_ack
=
ata_dummy_irq_ack
,
.
port_start
=
ata_port_start
,
};
static
void
ixp4xx_setup_port
(
struct
ata_ioports
*
ioaddr
,
...
...
@@ -211,10 +204,6 @@ static __devinit int ixp4xx_pata_probe(struct platform_device *pdev)
ap
->
pio_mask
=
0x1f
;
/* PIO4 */
ap
->
flags
|=
ATA_FLAG_MMIO
|
ATA_FLAG_NO_LEGACY
|
ATA_FLAG_NO_ATAPI
;
/* run in polling mode if no irq has been assigned */
if
(
!
irq
)
ap
->
flags
|=
ATA_FLAG_PIO_POLLING
;
ixp4xx_setup_port
(
&
ap
->
ioaddr
,
data
);
dev_printk
(
KERN_INFO
,
&
pdev
->
dev
,
"version "
DRV_VERSION
"
\n
"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录