Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4a3cba32
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
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看板
提交
4a3cba32
编写于
7月 29, 2008
作者:
P
Pierre Ossman
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sdhci: handle bug in JMB38x for sizes < 4 bytes
Signed-off-by:
N
Pierre Ossman
<
drzeus@drzeus.cx
>
上级
94ad374a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
1 deletion
+13
-1
drivers/mmc/host/sdhci-pci.c
drivers/mmc/host/sdhci-pci.c
+2
-1
drivers/mmc/host/sdhci.c
drivers/mmc/host/sdhci.c
+9
-0
drivers/mmc/host/sdhci.h
drivers/mmc/host/sdhci.h
+2
-0
未找到文件。
drivers/mmc/host/sdhci-pci.c
浏览文件 @
4a3cba32
...
...
@@ -143,7 +143,8 @@ static int jmicron_probe(struct sdhci_pci_chip *chip)
chip
->
quirks
|=
SDHCI_QUIRK_32BIT_DMA_ADDR
|
SDHCI_QUIRK_32BIT_DMA_SIZE
|
SDHCI_QUIRK_32BIT_ADMA_SIZE
|
SDHCI_QUIRK_RESET_AFTER_REQUEST
;
SDHCI_QUIRK_RESET_AFTER_REQUEST
|
SDHCI_QUIRK_BROKEN_SMALL_PIO
;
}
/*
...
...
drivers/mmc/host/sdhci.c
浏览文件 @
4a3cba32
...
...
@@ -278,6 +278,15 @@ static void sdhci_transfer_pio(struct sdhci_host *host)
else
mask
=
SDHCI_SPACE_AVAILABLE
;
/*
* Some controllers (JMicron JMB38x) mess up the buffer bits
* for transfers < 4 bytes. As long as it is just one block,
* we can ignore the bits.
*/
if
((
host
->
quirks
&
SDHCI_QUIRK_BROKEN_SMALL_PIO
)
&&
(
host
->
data
->
blocks
==
1
))
mask
=
~
0
;
while
(
readl
(
host
->
ioaddr
+
SDHCI_PRESENT_STATE
)
&
mask
)
{
if
(
host
->
data
->
flags
&
MMC_DATA_READ
)
sdhci_read_block_pio
(
host
);
...
...
drivers/mmc/host/sdhci.h
浏览文件 @
4a3cba32
...
...
@@ -206,6 +206,8 @@ struct sdhci_host {
#define SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER (1<<11)
/* Controller provides an incorrect timeout value for transfers */
#define SDHCI_QUIRK_BROKEN_TIMEOUT_VAL (1<<12)
/* Controller has an issue with buffer bits for small transfers */
#define SDHCI_QUIRK_BROKEN_SMALL_PIO (1<<13)
int
irq
;
/* Device IRQ */
void
__iomem
*
ioaddr
;
/* Mapped address */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录