drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c | 28 +++++++++++++++------- 1 file changed, 20 insertions(+), 8 deletions(-)
The EEPROM write path currently waits a fixed 10 ms after each page
write to cover the maximum write-cycle time.
Replace the fixed delay with ACK polling so the driver can continue as
soon as the EEPROM finishes its internal write cycle. Since the SMU I2C
adapter used for these EEPROM accesses does not support zero-length
transfers, poll readiness with an offset-only dummy write.
Keep the existing 10 ms timeout as the upper bound for the polling loop.
Tested on MI200 (ALDEBARAN) with ras_eeprom_reset confirming clean
write/read-back with no I2C errors.
Signed-off-by: Kunal Zodape <kunal.devanandzodape@amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c | 28 +++++++++++++++-------
1 file changed, 20 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
index 8cd69836dd99..53be5a31c40c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
@@ -153,15 +153,27 @@ static int __amdgpu_eeprom_xfer(struct i2c_adapter *i2c_adap, u32 eeprom_addr,
break;
if (!read) {
- /* According to EEPROM specs the length of the
- * self-writing cycle, tWR (tW), is 10 ms.
- *
- * TODO: Use polling on ACK, aka Acknowledge
- * Polling, to minimize waiting for the
- * internal write cycle to complete, as it is
- * usually smaller than tWR (tW).
+ ktime_t timeout = ktime_add_ms(ktime_get(), 10);
+
+ /* Poll for ACK to detect when the self-timed
+ * internal write cycle has completed, as per
+ * Acknowledge Polling described in the AT24CM02
+ * datasheet, Section 7.4. The SMU I2C adapter
+ * used by these EEPROM paths does not support
+ * zero-length messages, so use an offset-only
+ * dummy write to probe for the ACK. The address
+ * pointer update is harmless because each real
+ * transfer reprograms it before use.
*/
- msleep(10);
+ do {
+ r = i2c_transfer(i2c_adap, &msgs[0], 1);
+ if (r == 1)
+ break;
+ usleep_range(100, 200);
+ } while (ktime_before(ktime_get(), timeout));
+
+ if (r != 1)
+ break;
}
}
--
2.17.1
On Mon, 01 Jun 2026, Kunal Zodape <kunal.devanandzodape@amd.com> wrote:
> The EEPROM write path currently waits a fixed 10 ms after each page
> write to cover the maximum write-cycle time.
>
> Replace the fixed delay with ACK polling so the driver can continue as
> soon as the EEPROM finishes its internal write cycle. Since the SMU I2C
> adapter used for these EEPROM accesses does not support zero-length
> transfers, poll readiness with an offset-only dummy write.
>
> Keep the existing 10 ms timeout as the upper bound for the polling loop.
>
> Tested on MI200 (ALDEBARAN) with ras_eeprom_reset confirming clean
> write/read-back with no I2C errors.
>
> Signed-off-by: Kunal Zodape <kunal.devanandzodape@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c | 28 +++++++++++++++-------
> 1 file changed, 20 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> index 8cd69836dd99..53be5a31c40c 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> @@ -153,15 +153,27 @@ static int __amdgpu_eeprom_xfer(struct i2c_adapter *i2c_adap, u32 eeprom_addr,
> break;
>
> if (!read) {
> - /* According to EEPROM specs the length of the
> - * self-writing cycle, tWR (tW), is 10 ms.
> - *
> - * TODO: Use polling on ACK, aka Acknowledge
> - * Polling, to minimize waiting for the
> - * internal write cycle to complete, as it is
> - * usually smaller than tWR (tW).
> + ktime_t timeout = ktime_add_ms(ktime_get(), 10);
> +
> + /* Poll for ACK to detect when the self-timed
> + * internal write cycle has completed, as per
> + * Acknowledge Polling described in the AT24CM02
> + * datasheet, Section 7.4. The SMU I2C adapter
> + * used by these EEPROM paths does not support
> + * zero-length messages, so use an offset-only
> + * dummy write to probe for the ACK. The address
> + * pointer update is harmless because each real
> + * transfer reprograms it before use.
> */
> - msleep(10);
> + do {
> + r = i2c_transfer(i2c_adap, &msgs[0], 1);
> + if (r == 1)
> + break;
> + usleep_range(100, 200);
> + } while (ktime_before(ktime_get(), timeout));
> +
> + if (r != 1)
> + break;
See poll_timeout_us().
BR,
Jani.
> }
> }
--
Jani Nikula, Intel
The EEPROM write path currently waits a fixed 10 ms after each page
write to cover the maximum write-cycle time.
Replace the fixed delay with ACK polling so the driver can continue as
soon as the EEPROM finishes its internal write cycle. Since the SMU I2C
adapter used for these EEPROM accesses does not support zero-length
transfers, poll readiness with an offset-only dummy write.
Keep the existing 10 ms timeout as the upper bound for the polling loop.
Tested on MI200 (ALDEBARAN) with ras_eeprom_reset confirming clean
write/read-back with no I2C errors.
Suggested-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Kunal Zodape <kunal.devanandzodape@amd.com>
---
v2: Use read_poll_timeout() instead of open-coded ktime + do-while loop
as suggested
drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c | 27 +++++++++++++++-------
1 file changed, 19 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
index 8cd69836dd99..9dc538073bb8 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
@@ -21,6 +21,7 @@
*
*/
+#include <linux/iopoll.h>
#include "amdgpu_eeprom.h"
#include "amdgpu.h"
@@ -153,15 +154,25 @@ static int __amdgpu_eeprom_xfer(struct i2c_adapter *i2c_adap, u32 eeprom_addr,
break;
if (!read) {
- /* According to EEPROM specs the length of the
- * self-writing cycle, tWR (tW), is 10 ms.
- *
- * TODO: Use polling on ACK, aka Acknowledge
- * Polling, to minimize waiting for the
- * internal write cycle to complete, as it is
- * usually smaller than tWR (tW).
+ int ret;
+
+ /* Poll for ACK to detect when the self-timed
+ * internal write cycle has completed, as per
+ * Acknowledge Polling described in the AT24CM02
+ * datasheet, Section 7.4. The SMU I2C adapter
+ * used by these EEPROM paths does not support
+ * zero-length messages, so use an offset-only
+ * dummy write to probe for the ACK. The address
+ * pointer update is harmless because each real
+ * transfer reprograms it before use.
*/
- msleep(10);
+ ret = read_poll_timeout(i2c_transfer, r,
+ r == 1,
+ 200, 10 * USEC_PER_MSEC,
+ false,
+ i2c_adap, &msgs[0], 1);
+ if (ret)
+ break;
}
}
--
2.17.1
On 01-Jun-26 4:53 PM, Kunal Zodape wrote:
> [Some people who received this message don't often get email from kunal.devanandzodape@amd.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
>
> The EEPROM write path currently waits a fixed 10 ms after each page
> write to cover the maximum write-cycle time.
>
> Replace the fixed delay with ACK polling so the driver can continue as
> soon as the EEPROM finishes its internal write cycle. Since the SMU I2C
> adapter used for these EEPROM accesses does not support zero-length
> transfers, poll readiness with an offset-only dummy write.
>
> Keep the existing 10 ms timeout as the upper bound for the polling loop.
>
> Tested on MI200 (ALDEBARAN) with ras_eeprom_reset confirming clean
> write/read-back with no I2C errors.
The current sleep logic may be better than sending a dummy transfter
through firmware. That has the overhead of FW message logic and other
clients accessing i2c bus.
The original comments in the code logic are valid for optimization only
if driver has direct access to the i2c bus.
Thanks,
Lijo
>
> Suggested-by: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Kunal Zodape <kunal.devanandzodape@amd.com>
> ---
> v2: Use read_poll_timeout() instead of open-coded ktime + do-while loop
> as suggested
>
> drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c | 27 +++++++++++++++-------
> 1 file changed, 19 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> index 8cd69836dd99..9dc538073bb8 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_eeprom.c
> @@ -21,6 +21,7 @@
> *
> */
>
> +#include <linux/iopoll.h>
> #include "amdgpu_eeprom.h"
> #include "amdgpu.h"
>
> @@ -153,15 +154,25 @@ static int __amdgpu_eeprom_xfer(struct i2c_adapter *i2c_adap, u32 eeprom_addr,
> break;
>
> if (!read) {
> - /* According to EEPROM specs the length of the
> - * self-writing cycle, tWR (tW), is 10 ms.
> - *
> - * TODO: Use polling on ACK, aka Acknowledge
> - * Polling, to minimize waiting for the
> - * internal write cycle to complete, as it is
> - * usually smaller than tWR (tW).
> + int ret;
> +
> + /* Poll for ACK to detect when the self-timed
> + * internal write cycle has completed, as per
> + * Acknowledge Polling described in the AT24CM02
> + * datasheet, Section 7.4. The SMU I2C adapter
> + * used by these EEPROM paths does not support
> + * zero-length messages, so use an offset-only
> + * dummy write to probe for the ACK. The address
> + * pointer update is harmless because each real
> + * transfer reprograms it before use.
> */
> - msleep(10);
> + ret = read_poll_timeout(i2c_transfer, r,
> + r == 1,
> + 200, 10 * USEC_PER_MSEC,
> + false,
> + i2c_adap, &msgs[0], 1);
> + if (ret)
> + break;
> }
> }
>
> --
> 2.17.1
>
© 2016 - 2026 Red Hat, Inc.