EDAC, pnd2: Fix Apollo Lake DIMM detection
authorTony Luck <[email protected]>
Wed, 28 Jun 2017 23:44:07 +0000 (16:44 -0700)
committerBorislav Petkov <[email protected]>
Thu, 29 Jun 2017 08:37:50 +0000 (10:37 +0200)
Non-existent or empty DIMM slots result in error return from
RD_REGP(). But we shouldn't give up on failure.

So long as we find at least one DIMM we can continue.

Signed-off-by: Tony Luck <[email protected]>
Cc: Qiuxu Zhuo <[email protected]>
Cc: linux-edac <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Borislav Petkov <[email protected]>
drivers/edac/pnd2_edac.c

index 407f239553f4f024f549df3849047c0db1940d94..8e599490f6dec2e1c1002742817bd61ded9ecc69 100644 (file)
@@ -424,16 +424,21 @@ static void dnv_mk_region(char *name, struct region *rp, void *asym)
 
 static int apl_get_registers(void)
 {
+       int ret = -ENODEV;
        int i;
 
        if (RD_REG(&asym_2way, b_cr_asym_2way_mem_region_mchbar))
                return -ENODEV;
 
+       /*
+        * RD_REGP() will fail for unpopulated or non-existent
+        * DIMM slots. Return success if we find at least one DIMM.
+        */
        for (i = 0; i < APL_NUM_CHANNELS; i++)
-               if (RD_REGP(&drp0[i], d_cr_drp0, apl_dports[i]))
-                       return -ENODEV;
+               if (!RD_REGP(&drp0[i], d_cr_drp0, apl_dports[i]))
+                       ret = 0;
 
-       return 0;
+       return ret;
 }
 
 static int dnv_get_registers(void)