Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bb81a216
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
bb81a216
编写于
8月 27, 2010
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
i7300_edac: Detect if the device is on single mode
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
d7de2bdb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
8 deletion
+17
-8
drivers/edac/i7300_edac.c
drivers/edac/i7300_edac.c
+17
-8
未找到文件。
drivers/edac/i7300_edac.c
浏览文件 @
bb81a216
...
...
@@ -92,12 +92,13 @@
/* OFFSETS for Function 1 */
#define MC_SETTINGS 0x40
#define IS_MIRRORED(mc) ((mc) & (1 << 16))
#define IS_ECC_ENABLED(mc) ((mc) & (1 << 5))
#define IS_RETRY_ENABLED(mc) ((mc) & (1 << 31))
#define IS_SCRBALGO_ENHANCED(mc) ((mc) & (1 << 8))
#define IS_MIRRORED(mc) ((mc) & (1 << 16))
#define IS_ECC_ENABLED(mc) ((mc) & (1 << 5))
#define IS_RETRY_ENABLED(mc) ((mc) & (1 << 31))
#define IS_SCRBALGO_ENHANCED(mc) ((mc) & (1 << 8))
#define MC_SETTINGS_A 0x58
#define IS_SINGLE_MODE(mca) ((mca) & (1 << 14))
#define TOLM 0x6C
#define REDMEMB 0x7C
...
...
@@ -237,9 +238,11 @@ struct i7300_pvt {
u16
tolm
;
/* top of low memory */
u64
ambase
;
/* AMB BAR */
u32
mc_settings
;
u16
mir
[
MAX_MIR
];
u32
mc_settings
;
/* Report several settings */
u32
mc_settings_a
;
u16
mir
[
MAX_MIR
];
/* Memory Interleave Reg*/
u16
mtr
[
MAX_SLOTS
][
MAX_BRANCHES
];
/* Memory Technlogy Reg */
u16
ambpresent
[
MAX_CHANNELS
];
/* AMB present regs */
...
...
@@ -653,9 +656,15 @@ static int i7300_get_mc_regs(struct mem_ctl_info *mci)
/* Get memory controller settings */
pci_read_config_dword
(
pvt
->
pci_dev_16_1_fsb_addr_map
,
MC_SETTINGS
,
&
pvt
->
mc_settings
);
pci_read_config_dword
(
pvt
->
pci_dev_16_1_fsb_addr_map
,
MC_SETTINGS_A
,
&
pvt
->
mc_settings_a
);
debugf0
(
"Memory controller operating on %s mode
\n
"
,
if
(
IS_SINGLE_MODE
(
pvt
->
mc_settings_a
))
debugf0
(
"Memory controller operating on single mode
\n
"
);
else
debugf0
(
"Memory controller operating on %s mode
\n
"
,
IS_MIRRORED
(
pvt
->
mc_settings
)
?
"mirrored"
:
"non-mirrored"
);
debugf0
(
"Error detection is %s
\n
"
,
IS_ECC_ENABLED
(
pvt
->
mc_settings
)
?
"enabled"
:
"disabled"
);
debugf0
(
"Retry is %s
\n
"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录