Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
24fc484a
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看板
提交
24fc484a
编写于
4月 22, 2009
作者:
B
Bartlomiej Zolnierkiewicz
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-linus' into for-next
上级
2ecf0a57
83cff839
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
29 addition
and
17 deletion
+29
-17
drivers/ide/ide-cd.c
drivers/ide/ide-cd.c
+1
-1
drivers/ide/ide-gd.c
drivers/ide/ide-gd.c
+16
-1
drivers/ide/palm_bk3710.c
drivers/ide/palm_bk3710.c
+12
-14
drivers/macintosh/mediabay.c
drivers/macintosh/mediabay.c
+0
-1
未找到文件。
drivers/ide/ide-cd.c
浏览文件 @
24fc484a
...
...
@@ -577,7 +577,7 @@ static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
struct
request
*
rq
=
hwif
->
rq
;
ide_expiry_t
*
expiry
=
NULL
;
int
dma_error
=
0
,
dma
,
thislen
,
uptodate
=
0
;
int
write
=
(
rq_data_dir
(
rq
)
==
WRITE
)
?
1
:
0
,
rc
,
nsectors
;
int
write
=
(
rq_data_dir
(
rq
)
==
WRITE
)
?
1
:
0
,
rc
=
0
,
nsectors
;
int
sense
=
blk_sense_request
(
rq
);
unsigned
int
timeout
;
u16
len
;
...
...
drivers/ide/ide-gd.c
浏览文件 @
24fc484a
...
...
@@ -7,6 +7,7 @@
#include <linux/mutex.h>
#include <linux/ide.h>
#include <linux/hdreg.h>
#include <linux/dmi.h>
#if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT)
#define IDE_DISK_MINORS (1 << PARTN_BITS)
...
...
@@ -99,6 +100,19 @@ static void ide_gd_resume(ide_drive_t *drive)
(
void
)
drive
->
disk_ops
->
get_capacity
(
drive
);
}
static
const
struct
dmi_system_id
ide_coldreboot_table
[]
=
{
{
/* Acer TravelMate 66x cuts power during reboot */
.
ident
=
"Acer TravelMate 660"
,
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"Acer"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"TravelMate 660"
),
},
},
{
}
/* terminate list */
};
static
void
ide_gd_shutdown
(
ide_drive_t
*
drive
)
{
#ifdef CONFIG_ALPHA
...
...
@@ -115,7 +129,8 @@ static void ide_gd_shutdown(ide_drive_t *drive)
the disk to expire its write cache. */
if
(
system_state
!=
SYSTEM_POWER_OFF
)
{
#else
if
(
system_state
==
SYSTEM_RESTART
)
{
if
(
system_state
==
SYSTEM_RESTART
&&
!
dmi_check_system
(
ide_coldreboot_table
))
{
#endif
drive
->
disk_ops
->
flush
(
drive
);
return
;
...
...
drivers/ide/palm_bk3710.c
浏览文件 @
24fc484a
...
...
@@ -39,14 +39,6 @@
/* Primary Control Offset */
#define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6
/*
* PalmChip 3710 IDE Controller UDMA timing structure Definition
*/
struct
palm_bk3710_udmatiming
{
unsigned
int
rptime
;
/* Ready to pause time */
unsigned
int
cycletime
;
/* Cycle Time */
};
#define BK3710_BMICP 0x00
#define BK3710_BMISP 0x02
#define BK3710_BMIDTP 0x04
...
...
@@ -75,13 +67,19 @@ struct palm_bk3710_udmatiming {
static
unsigned
ideclk_period
;
/* in nanoseconds */
struct
palm_bk3710_udmatiming
{
unsigned
int
rptime
;
/* tRP -- Ready to pause time (nsec) */
unsigned
int
cycletime
;
/* tCYCTYP2/2 -- avg Cycle Time (nsec) */
/* tENV is always a minimum of 20 nsec */
};
static
const
struct
palm_bk3710_udmatiming
palm_bk3710_udmatimings
[
6
]
=
{
{
160
,
240
},
/* UDMA Mode 0 */
{
125
,
160
},
/* UDMA Mode 1 */
{
100
,
120
},
/* UDMA Mode 2 */
{
100
,
90
},
/* UDMA Mode 3 */
{
100
,
60
},
/* UDMA Mode 4 */
{
85
,
40
},
/* UDMA Mode 5 */
{
160
,
240
/
2
,},
/* UDMA Mode 0 */
{
125
,
160
/
2
,},
/* UDMA Mode 1 */
{
100
,
120
/
2
,},
/* UDMA Mode 2 */
{
100
,
90
/
2
,
},
/* UDMA Mode 3 */
{
100
,
60
/
2
,
},
/* UDMA Mode 4 */
{
85
,
40
/
2
,
},
/* UDMA Mode 5 */
};
static
void
palm_bk3710_setudmamode
(
void
__iomem
*
base
,
unsigned
int
dev
,
...
...
drivers/macintosh/mediabay.c
浏览文件 @
24fc484a
...
...
@@ -18,7 +18,6 @@
#include <linux/timer.h>
#include <linux/stddef.h>
#include <linux/init.h>
#include <linux/ide.h>
#include <linux/kthread.h>
#include <linux/mutex.h>
#include <asm/prom.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录