Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215986
b: refs/heads/master
c: e6649cc
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Sep 24, 2010
1 parent ba452e3 commit 8dcf6c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1aa4a7b6b082adbfa704988dd098bc96b8837d5a
refs/heads/master: e6649cc62949f1ed473bf1131fa425cfe72d3f64
17 changes: 10 additions & 7 deletions trunk/drivers/edac/i7300_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ static int decode_mtr(struct i7300_pvt *pvt,
int slot, int ch, int branch,
struct i7300_dimm_info *dinfo,
struct csrow_info *p_csrow,
u32 *last_page)
u32 *nr_pages)
{
int mtr, ans, addrBits, channel;

Expand Down Expand Up @@ -649,6 +649,7 @@ static int decode_mtr(struct i7300_pvt *pvt,
addrBits -= 3; /* 8 bits per bytes */

dinfo->megabytes = 1 << addrBits;
*nr_pages = dinfo->megabytes << 8;

debugf2("\t\tWIDTH: x%d\n", MTR_DRAM_WIDTH(mtr));

Expand All @@ -662,12 +663,8 @@ static int decode_mtr(struct i7300_pvt *pvt,
debugf2("\t\tSIZE: %d MB\n", dinfo->megabytes);

p_csrow->grain = 8;
p_csrow->nr_pages = dinfo->megabytes << 8;
p_csrow->mtype = MEM_FB_DDR2;
p_csrow->csrow_idx = slot;
p_csrow->first_page = *last_page;
*last_page += p_csrow->nr_pages;
p_csrow->last_page = *last_page;
p_csrow->page_mask = 0;

/*
Expand Down Expand Up @@ -780,7 +777,7 @@ static int i7300_init_csrows(struct mem_ctl_info *mci)
int rc = -ENODEV;
int mtr;
int ch, branch, slot, channel;
u32 last_page = 0;
u32 last_page = 0, nr_pages;

pvt = mci->pvt_info;

Expand Down Expand Up @@ -818,11 +815,17 @@ static int i7300_init_csrows(struct mem_ctl_info *mci)
p_csrow = &mci->csrows[slot];

mtr = decode_mtr(pvt, slot, ch, branch,
dinfo, p_csrow, &last_page);
dinfo, p_csrow, &nr_pages);
/* if no DIMMS on this row, continue */
if (!MTR_DIMMS_PRESENT(mtr))
continue;

/* Update per_csrow memory count */
p_csrow->nr_pages += nr_pages;
p_csrow->first_page = last_page;
last_page += nr_pages;
p_csrow->last_page = last_page;

rc = 0;
}
}
Expand Down

0 comments on commit 8dcf6c1

Please sign in to comment.