Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f06368f7
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看板
提交
f06368f7
编写于
10月 05, 2009
作者:
S
Sascha Hauer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
mxc_nand: disable sp_en bit only once
Signed-off-by:
N
Sascha Hauer
<
s.hauer@pengutronix.de
>
上级
9467114e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
3 addition
and
12 deletion
+3
-12
drivers/mtd/nand/mxc_nand.c
drivers/mtd/nand/mxc_nand.c
+3
-12
未找到文件。
drivers/mtd/nand/mxc_nand.c
浏览文件 @
f06368f7
...
...
@@ -274,16 +274,10 @@ static void send_page(struct mtd_info *mtd, unsigned int ops)
static
void
send_read_id
(
struct
mxc_nand_host
*
host
)
{
struct
nand_chip
*
this
=
&
host
->
nand
;
uint16_t
tmp
;
/* NANDFC buffer 0 is used for device ID output */
writew
(
0x0
,
host
->
regs
+
NFC_BUF_ADDR
);
/* Read ID into main buffer */
tmp
=
readw
(
host
->
regs
+
NFC_CONFIG1
);
tmp
&=
~
NFC_SP_EN
;
writew
(
tmp
,
host
->
regs
+
NFC_CONFIG1
);
writew
(
NFC_ID
,
host
->
regs
+
NFC_CONFIG2
);
/* Wait for operation to complete */
...
...
@@ -307,7 +301,7 @@ static uint16_t get_dev_status(struct mxc_nand_host *host)
{
void
__iomem
*
main_buf
=
host
->
main_area1
;
uint32_t
store
;
uint16_t
ret
,
tmp
;
uint16_t
ret
;
/* Issue status request to NAND device */
/* store the main area1 first word, later do recovery */
...
...
@@ -316,11 +310,6 @@ static uint16_t get_dev_status(struct mxc_nand_host *host)
* corruption of read/write buffer on status requests. */
writew
(
1
,
host
->
regs
+
NFC_BUF_ADDR
);
/* Read status into main buffer */
tmp
=
readw
(
host
->
regs
+
NFC_CONFIG1
);
tmp
&=
~
NFC_SP_EN
;
writew
(
tmp
,
host
->
regs
+
NFC_CONFIG1
);
writew
(
NFC_STATUS
,
host
->
regs
+
NFC_CONFIG2
);
/* Wait for operation to complete */
...
...
@@ -739,8 +728,10 @@ static int __init mxcnd_probe(struct platform_device *pdev)
}
else
BUG
();
/* disable interrupt and spare enable */
tmp
=
readw
(
host
->
regs
+
NFC_CONFIG1
);
tmp
|=
NFC_INT_MSK
;
tmp
&=
~
NFC_SP_EN
;
writew
(
tmp
,
host
->
regs
+
NFC_CONFIG1
);
init_waitqueue_head
(
&
host
->
irq_waitq
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录