Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
2d3e4e76
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
2d3e4e76
编写于
11月 25, 2010
作者:
P
Paul Mundt
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'common/mmcif' into rmobile/mmcif
上级
698fd6a2
da1d39e3
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
34 addition
and
28 deletion
+34
-28
drivers/mmc/host/sh_mmcif.c
drivers/mmc/host/sh_mmcif.c
+0
-23
include/linux/mmc/sh_mmcif.h
include/linux/mmc/sh_mmcif.h
+34
-5
未找到文件。
drivers/mmc/host/sh_mmcif.c
浏览文件 @
2d3e4e76
...
@@ -62,25 +62,6 @@
...
@@ -62,25 +62,6 @@
/* CE_BLOCK_SET */
/* CE_BLOCK_SET */
#define BLOCK_SIZE_MASK 0x0000ffff
#define BLOCK_SIZE_MASK 0x0000ffff
/* CE_CLK_CTRL */
#define CLK_ENABLE (1 << 24)
/* 1: output mmc clock */
#define CLK_CLEAR ((1 << 19) | (1 << 18) | (1 << 17) | (1 << 16))
#define CLK_SUP_PCLK ((1 << 19) | (1 << 18) | (1 << 17) | (1 << 16))
#define SRSPTO_256 ((1 << 13) | (0 << 12))
/* resp timeout */
#define SRBSYTO_29 ((1 << 11) | (1 << 10) | \
(1 << 9) | (1 << 8))
/* resp busy timeout */
#define SRWDTO_29 ((1 << 7) | (1 << 6) | \
(1 << 5) | (1 << 4))
/* read/write timeout */
#define SCCSTO_29 ((1 << 3) | (1 << 2) | \
(1 << 1) | (1 << 0))
/* ccs timeout */
/* CE_BUF_ACC */
#define BUF_ACC_DMAWEN (1 << 25)
#define BUF_ACC_DMAREN (1 << 24)
#define BUF_ACC_BUSW_32 (0 << 17)
#define BUF_ACC_BUSW_16 (1 << 17)
#define BUF_ACC_ATYP (1 << 16)
/* CE_INT */
/* CE_INT */
#define INT_CCSDE (1 << 29)
#define INT_CCSDE (1 << 29)
#define INT_CMD12DRE (1 << 26)
#define INT_CMD12DRE (1 << 26)
...
@@ -165,10 +146,6 @@
...
@@ -165,10 +146,6 @@
STS2_AC12BSYTO | STS2_RSPBSYTO | \
STS2_AC12BSYTO | STS2_RSPBSYTO | \
STS2_AC12RSPTO | STS2_RSPTO)
STS2_AC12RSPTO | STS2_RSPTO)
/* CE_VERSION */
#define SOFT_RST_ON (1 << 31)
#define SOFT_RST_OFF (0 << 31)
#define CLKDEV_EMMC_DATA 52000000
/* 52MHz */
#define CLKDEV_EMMC_DATA 52000000
/* 52MHz */
#define CLKDEV_MMC_DATA 20000000
/* 20MHz */
#define CLKDEV_MMC_DATA 20000000
/* 20MHz */
#define CLKDEV_INIT 400000
/* 400 KHz */
#define CLKDEV_INIT 400000
/* 400 KHz */
...
...
include/linux/mmc/sh_mmcif.h
浏览文件 @
2d3e4e76
...
@@ -59,6 +59,29 @@ struct sh_mmcif_plat_data {
...
@@ -59,6 +59,29 @@ struct sh_mmcif_plat_data {
#define MMCIF_CE_HOST_STS2 0x0000004C
#define MMCIF_CE_HOST_STS2 0x0000004C
#define MMCIF_CE_VERSION 0x0000007C
#define MMCIF_CE_VERSION 0x0000007C
/* CE_BUF_ACC */
#define BUF_ACC_DMAWEN (1 << 25)
#define BUF_ACC_DMAREN (1 << 24)
#define BUF_ACC_BUSW_32 (0 << 17)
#define BUF_ACC_BUSW_16 (1 << 17)
#define BUF_ACC_ATYP (1 << 16)
/* CE_CLK_CTRL */
#define CLK_ENABLE (1 << 24)
/* 1: output mmc clock */
#define CLK_CLEAR ((1 << 19) | (1 << 18) | (1 << 17) | (1 << 16))
#define CLK_SUP_PCLK ((1 << 19) | (1 << 18) | (1 << 17) | (1 << 16))
#define SRSPTO_256 ((1 << 13) | (0 << 12))
/* resp timeout */
#define SRBSYTO_29 ((1 << 11) | (1 << 10) | \
(1 << 9) | (1 << 8))
/* resp busy timeout */
#define SRWDTO_29 ((1 << 7) | (1 << 6) | \
(1 << 5) | (1 << 4))
/* read/write timeout */
#define SCCSTO_29 ((1 << 3) | (1 << 2) | \
(1 << 1) | (1 << 0))
/* ccs timeout */
/* CE_VERSION */
#define SOFT_RST_ON (1 << 31)
#define SOFT_RST_OFF ~SOFT_RST_ON
static
inline
u32
sh_mmcif_readl
(
void
__iomem
*
addr
,
int
reg
)
static
inline
u32
sh_mmcif_readl
(
void
__iomem
*
addr
,
int
reg
)
{
{
return
readl
(
addr
+
reg
);
return
readl
(
addr
+
reg
);
...
@@ -149,17 +172,23 @@ static inline void sh_mmcif_boot_init(void __iomem *base)
...
@@ -149,17 +172,23 @@ static inline void sh_mmcif_boot_init(void __iomem *base)
/* reset */
/* reset */
tmp
=
sh_mmcif_readl
(
base
,
MMCIF_CE_VERSION
);
tmp
=
sh_mmcif_readl
(
base
,
MMCIF_CE_VERSION
);
sh_mmcif_writel
(
base
,
MMCIF_CE_VERSION
,
tmp
|
0x80000000
);
sh_mmcif_writel
(
base
,
MMCIF_CE_VERSION
,
tmp
|
SOFT_RST_ON
);
sh_mmcif_writel
(
base
,
MMCIF_CE_VERSION
,
tmp
&
~
0x80000000
);
sh_mmcif_writel
(
base
,
MMCIF_CE_VERSION
,
tmp
&
SOFT_RST_OFF
);
/* byte swap */
/* byte swap */
sh_mmcif_writel
(
base
,
MMCIF_CE_BUF_ACC
,
0x00010000
);
sh_mmcif_writel
(
base
,
MMCIF_CE_BUF_ACC
,
BUF_ACC_ATYP
);
/* Set block size in MMCIF hardware */
/* Set block size in MMCIF hardware */
sh_mmcif_writel
(
base
,
MMCIF_CE_BLOCK_SET
,
SH_MMCIF_BBS
);
sh_mmcif_writel
(
base
,
MMCIF_CE_BLOCK_SET
,
SH_MMCIF_BBS
);
/* Enable the clock, set it to Bus clock/256 (about 325Khz)*/
/* Enable the clock, set it to Bus clock/256 (about 325Khz).
sh_mmcif_writel
(
base
,
MMCIF_CE_CLK_CTRL
,
0x01072fff
);
* It is unclear where 0x70000 comes from or if it is even needed.
* It is there for byte-compatibility with code that is known to
* work.
*/
sh_mmcif_writel
(
base
,
MMCIF_CE_CLK_CTRL
,
CLK_ENABLE
|
SRSPTO_256
|
SRBSYTO_29
|
SRWDTO_29
|
SCCSTO_29
|
0x70000
);
/* CMD0 */
/* CMD0 */
sh_mmcif_boot_cmd
(
base
,
0x00000040
,
0
);
sh_mmcif_boot_cmd
(
base
,
0x00000040
,
0
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录