]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/amdgpu: Retry i2c transfer once if it fails on SMU13.0.6
authorKent Russell <kent.russell@amd.com>
Tue, 10 Sep 2024 13:32:13 +0000 (09:32 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 18 Sep 2024 20:14:27 +0000 (16:14 -0400)
During init, there can be some collisions on the i2c bus that result in
the EEPROM read failing. This has been mitigated in the PMFW to a
degree, but there is still a small chance that the bus will be busy.
When the read fails during RAS init, that disables page retirement
altogether, which is obviously not ideal. To try to avoid that
situation, set the eeprom_read function to retry once if the first read
fails, specifically for smu_v13_0_6.

Signed-off-by: Kent Russell <kent.russell@amd.com>
Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c

index 9974c9f8135e99977a95d5d0128455be3991533b..55ed6247eb61f7a76d4155ec3074cdf5c6520032 100644 (file)
@@ -2107,8 +2107,12 @@ static int smu_v13_0_6_i2c_xfer(struct i2c_adapter *i2c_adap,
        }
        mutex_lock(&adev->pm.mutex);
        r = smu_v13_0_6_request_i2c_xfer(smu, req);
-       if (r)
-               goto fail;
+       if (r) {
+               /* Retry once, in case of an i2c collision */
+               r = smu_v13_0_6_request_i2c_xfer(smu, req);
+               if (r)
+                       goto fail;
+       }
 
        for (c = i = 0; i < num_msgs; i++) {
                if (!(msg[i].flags & I2C_M_RD)) {