Commit f4782e32 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Ben Hutchings

Fix sb_edac compilation with 32 bits kernels

commit 5b889e37 upstream.

As reported by Josh Boyer <jwboyer@redhat.com>:
>	drivers/edac/sb_edac.c: In function 'get_memory_error_data':
> 	drivers/edac/sb_edac.c:861:2: warning: left shift count >= width of type
> 	[enabled by default]
> 	<snip>
> 	ERROR: "__udivdi3" [drivers/edac/sb_edac.ko] undefined!
> 	make[1]: *** [__modpost] Error 1
> 	make: *** [modules] Error 2

PS.: compile-tested only
Reported-by: default avatarJosh Boyer <jwboyer@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
[bwh: Prerequisite for "sb_edac: Fix erroneous bytes->gigabytes conversion"]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 38e4433d
...@@ -214,7 +214,7 @@ config EDAC_I7300 ...@@ -214,7 +214,7 @@ config EDAC_I7300
config EDAC_SBRIDGE config EDAC_SBRIDGE
tristate "Intel Sandy-Bridge Integrated MC" tristate "Intel Sandy-Bridge Integrated MC"
depends on EDAC_MM_EDAC && PCI && X86_64 && X86_MCE_INTEL depends on EDAC_MM_EDAC && PCI && X86 && X86_MCE_INTEL
depends on EXPERIMENTAL depends on EXPERIMENTAL
help help
Support for error detection and correction the Intel Support for error detection and correction the Intel
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <linux/mmzone.h> #include <linux/mmzone.h>
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/bitmap.h> #include <linux/bitmap.h>
#include <linux/math64.h>
#include <asm/processor.h> #include <asm/processor.h>
#include <asm/mce.h> #include <asm/mce.h>
...@@ -671,6 +672,7 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -671,6 +672,7 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
u32 reg; u32 reg;
u64 limit, prv = 0; u64 limit, prv = 0;
u64 tmp_mb; u64 tmp_mb;
u32 mb, kb;
u32 rir_way; u32 rir_way;
/* /*
...@@ -683,8 +685,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -683,8 +685,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
pvt->tolm = GET_TOLM(reg); pvt->tolm = GET_TOLM(reg);
tmp_mb = (1 + pvt->tolm) >> 20; tmp_mb = (1 + pvt->tolm) >> 20;
debugf0("TOLM: %Lu.%03Lu GB (0x%016Lx)\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
tmp_mb / 1000, tmp_mb % 1000, (u64)pvt->tolm); debugf0("TOLM: %u.%03u GB (0x%016Lx)\n",
mb, kb, (u64)pvt->tolm);
/* Address range is already 45:25 */ /* Address range is already 45:25 */
pci_read_config_dword(pvt->pci_sad1, TOHM, pci_read_config_dword(pvt->pci_sad1, TOHM,
...@@ -692,8 +695,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -692,8 +695,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
pvt->tohm = GET_TOHM(reg); pvt->tohm = GET_TOHM(reg);
tmp_mb = (1 + pvt->tohm) >> 20; tmp_mb = (1 + pvt->tohm) >> 20;
debugf0("TOHM: %Lu.%03Lu GB (0x%016Lx)", mb = div_u64_rem(tmp_mb, 1000, &kb);
tmp_mb / 1000, tmp_mb % 1000, (u64)pvt->tohm); debugf0("TOHM: %u.%03u GB (0x%016Lx)",
mb, kb, (u64)pvt->tohm);
/* /*
* Step 2) Get SAD range and SAD Interleave list * Step 2) Get SAD range and SAD Interleave list
...@@ -715,10 +719,11 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -715,10 +719,11 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
break; break;
tmp_mb = (limit + 1) >> 20; tmp_mb = (limit + 1) >> 20;
debugf0("SAD#%d %s up to %Lu.%03Lu GB (0x%016Lx) %s reg=0x%08x\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
debugf0("SAD#%d %s up to %u.%03u GB (0x%016Lx) %s reg=0x%08x\n",
n_sads, n_sads,
get_dram_attr(reg), get_dram_attr(reg),
tmp_mb / 1000, tmp_mb % 1000, mb, kb,
((u64)tmp_mb) << 20L, ((u64)tmp_mb) << 20L,
INTERLEAVE_MODE(reg) ? "Interleave: 8:6" : "Interleave: [8:6]XOR[18:16]", INTERLEAVE_MODE(reg) ? "Interleave: 8:6" : "Interleave: [8:6]XOR[18:16]",
reg); reg);
...@@ -748,8 +753,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -748,8 +753,9 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
break; break;
tmp_mb = (limit + 1) >> 20; tmp_mb = (limit + 1) >> 20;
debugf0("TAD#%d: up to %Lu.%03Lu GB (0x%016Lx), socket interleave %d, memory interleave %d, TGT: %d, %d, %d, %d, reg=0x%08x\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
n_tads, tmp_mb / 1000, tmp_mb % 1000, debugf0("TAD#%d: up to %u.%03u GB (0x%016Lx), socket interleave %d, memory interleave %d, TGT: %d, %d, %d, %d, reg=0x%08x\n",
n_tads, mb, kb,
((u64)tmp_mb) << 20L, ((u64)tmp_mb) << 20L,
(u32)TAD_SOCK(reg), (u32)TAD_SOCK(reg),
(u32)TAD_CH(reg), (u32)TAD_CH(reg),
...@@ -772,9 +778,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -772,9 +778,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
tad_ch_nilv_offset[j], tad_ch_nilv_offset[j],
&reg); &reg);
tmp_mb = TAD_OFFSET(reg) >> 20; tmp_mb = TAD_OFFSET(reg) >> 20;
debugf0("TAD CH#%d, offset #%d: %Lu.%03Lu GB (0x%016Lx), reg=0x%08x\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
debugf0("TAD CH#%d, offset #%d: %u.%03u GB (0x%016Lx), reg=0x%08x\n",
i, j, i, j,
tmp_mb / 1000, tmp_mb % 1000, mb, kb,
((u64)tmp_mb) << 20L, ((u64)tmp_mb) << 20L,
reg); reg);
} }
...@@ -796,9 +803,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -796,9 +803,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
tmp_mb = RIR_LIMIT(reg) >> 20; tmp_mb = RIR_LIMIT(reg) >> 20;
rir_way = 1 << RIR_WAY(reg); rir_way = 1 << RIR_WAY(reg);
debugf0("CH#%d RIR#%d, limit: %Lu.%03Lu GB (0x%016Lx), way: %d, reg=0x%08x\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
debugf0("CH#%d RIR#%d, limit: %u.%03u GB (0x%016Lx), way: %d, reg=0x%08x\n",
i, j, i, j,
tmp_mb / 1000, tmp_mb % 1000, mb, kb,
((u64)tmp_mb) << 20L, ((u64)tmp_mb) << 20L,
rir_way, rir_way,
reg); reg);
...@@ -809,9 +817,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci) ...@@ -809,9 +817,10 @@ static void get_memory_layout(const struct mem_ctl_info *mci)
&reg); &reg);
tmp_mb = RIR_OFFSET(reg) << 6; tmp_mb = RIR_OFFSET(reg) << 6;
debugf0("CH#%d RIR#%d INTL#%d, offset %Lu.%03Lu GB (0x%016Lx), tgt: %d, reg=0x%08x\n", mb = div_u64_rem(tmp_mb, 1000, &kb);
debugf0("CH#%d RIR#%d INTL#%d, offset %u.%03u GB (0x%016Lx), tgt: %d, reg=0x%08x\n",
i, j, k, i, j, k,
tmp_mb / 1000, tmp_mb % 1000, mb, kb,
((u64)tmp_mb) << 20L, ((u64)tmp_mb) << 20L,
(u32)RIR_RNK_TGT(reg), (u32)RIR_RNK_TGT(reg),
reg); reg);
...@@ -849,6 +858,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci, ...@@ -849,6 +858,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci,
u8 ch_way,sck_way; u8 ch_way,sck_way;
u32 tad_offset; u32 tad_offset;
u32 rir_way; u32 rir_way;
u32 mb, kb;
u64 ch_addr, offset, limit, prv = 0; u64 ch_addr, offset, limit, prv = 0;
...@@ -859,7 +869,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci, ...@@ -859,7 +869,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci,
* range (e. g. VGA addresses). It is unlikely, however, that the * range (e. g. VGA addresses). It is unlikely, however, that the
* memory controller would generate an error on that range. * memory controller would generate an error on that range.
*/ */
if ((addr > (u64) pvt->tolm) && (addr < (1L << 32))) { if ((addr > (u64) pvt->tolm) && (addr < (1LL << 32))) {
sprintf(msg, "Error at TOLM area, on addr 0x%08Lx", addr); sprintf(msg, "Error at TOLM area, on addr 0x%08Lx", addr);
edac_mc_handle_ce_no_info(mci, msg); edac_mc_handle_ce_no_info(mci, msg);
return -EINVAL; return -EINVAL;
...@@ -1054,7 +1064,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci, ...@@ -1054,7 +1064,7 @@ static int get_memory_error_data(struct mem_ctl_info *mci,
ch_addr = addr & 0x7f; ch_addr = addr & 0x7f;
/* Remove socket wayness and remove 6 bits */ /* Remove socket wayness and remove 6 bits */
addr >>= 6; addr >>= 6;
addr /= sck_xch; addr = div_u64(addr, sck_xch);
#if 0 #if 0
/* Divide by channel way */ /* Divide by channel way */
addr = addr / ch_way; addr = addr / ch_way;
...@@ -1074,10 +1084,10 @@ static int get_memory_error_data(struct mem_ctl_info *mci, ...@@ -1074,10 +1084,10 @@ static int get_memory_error_data(struct mem_ctl_info *mci,
continue; continue;
limit = RIR_LIMIT(reg); limit = RIR_LIMIT(reg);
mb = div_u64_rem(limit >> 20, 1000, &kb);
debugf0("RIR#%d, limit: %Lu.%03Lu GB (0x%016Lx), way: %d\n", debugf0("RIR#%d, limit: %u.%03u GB (0x%016Lx), way: %d\n",
n_rir, n_rir,
(limit >> 20) / 1000, (limit >> 20) % 1000, mb, kb,
limit, limit,
1 << RIR_WAY(reg)); 1 << RIR_WAY(reg));
if (ch_addr <= limit) if (ch_addr <= limit)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment