diff options
-rw-r--r-- | drivers/edac/i7300_edac.c | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/drivers/edac/i7300_edac.c b/drivers/edac/i7300_edac.c index 087c27bc5d42..9004c64b169e 100644 --- a/drivers/edac/i7300_edac.c +++ b/drivers/edac/i7300_edac.c | |||
@@ -750,15 +750,23 @@ static int i7300_init_csrows(struct mem_ctl_info *mci) | |||
750 | struct i7300_dimm_info *dinfo; | 750 | struct i7300_dimm_info *dinfo; |
751 | int rc = -ENODEV; | 751 | int rc = -ENODEV; |
752 | int mtr; | 752 | int mtr; |
753 | int ch, branch, slot, channel; | 753 | int ch, branch, slot, channel, max_channel, max_branch; |
754 | struct dimm_info *dimm; | 754 | struct dimm_info *dimm; |
755 | 755 | ||
756 | pvt = mci->pvt_info; | 756 | pvt = mci->pvt_info; |
757 | 757 | ||
758 | edac_dbg(2, "Memory Technology Registers:\n"); | 758 | edac_dbg(2, "Memory Technology Registers:\n"); |
759 | 759 | ||
760 | if (IS_SINGLE_MODE(pvt->mc_settings_a)) { | ||
761 | max_branch = 1; | ||
762 | max_channel = 1; | ||
763 | } else { | ||
764 | max_branch = MAX_BRANCHES; | ||
765 | max_channel = MAX_CH_PER_BRANCH; | ||
766 | } | ||
767 | |||
760 | /* Get the AMB present registers for the four channels */ | 768 | /* Get the AMB present registers for the four channels */ |
761 | for (branch = 0; branch < MAX_BRANCHES; branch++) { | 769 | for (branch = 0; branch < max_branch; branch++) { |
762 | /* Read and dump branch 0's MTRs */ | 770 | /* Read and dump branch 0's MTRs */ |
763 | channel = to_channel(0, branch); | 771 | channel = to_channel(0, branch); |
764 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], | 772 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], |
@@ -767,6 +775,9 @@ static int i7300_init_csrows(struct mem_ctl_info *mci) | |||
767 | edac_dbg(2, "\t\tAMB-present CH%d = 0x%x:\n", | 775 | edac_dbg(2, "\t\tAMB-present CH%d = 0x%x:\n", |
768 | channel, pvt->ambpresent[channel]); | 776 | channel, pvt->ambpresent[channel]); |
769 | 777 | ||
778 | if (max_channel == 1) | ||
779 | continue; | ||
780 | |||
770 | channel = to_channel(1, branch); | 781 | channel = to_channel(1, branch); |
771 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], | 782 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], |
772 | AMBPRESENT_1, | 783 | AMBPRESENT_1, |
@@ -778,11 +789,11 @@ static int i7300_init_csrows(struct mem_ctl_info *mci) | |||
778 | /* Get the set of MTR[0-7] regs by each branch */ | 789 | /* Get the set of MTR[0-7] regs by each branch */ |
779 | for (slot = 0; slot < MAX_SLOTS; slot++) { | 790 | for (slot = 0; slot < MAX_SLOTS; slot++) { |
780 | int where = mtr_regs[slot]; | 791 | int where = mtr_regs[slot]; |
781 | for (branch = 0; branch < MAX_BRANCHES; branch++) { | 792 | for (branch = 0; branch < max_branch; branch++) { |
782 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], | 793 | pci_read_config_word(pvt->pci_dev_2x_0_fbd_branch[branch], |
783 | where, | 794 | where, |
784 | &pvt->mtr[slot][branch]); | 795 | &pvt->mtr[slot][branch]); |
785 | for (ch = 0; ch < MAX_CH_PER_BRANCH; ch++) { | 796 | for (ch = 0; ch < max_channel; ch++) { |
786 | int channel = to_channel(ch, branch); | 797 | int channel = to_channel(ch, branch); |
787 | 798 | ||
788 | dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, | 799 | dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, |