From: Matthew Bettencourt <matthew.bettencourt@gmail.com>
To: Guenter Roeck <linux@roeck-us.net>
Cc: linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [BUG] SPD5118 Intermittent MR11 Corruption During Suspend/Resume
Date: Mon, 31 Aug 2026 19:16:17 -0500 [thread overview]
Message-ID: <763a8b30-8548-4ff0-a1e9-8e74bbfe9b02@gmail.com> (raw)
In-Reply-To: <3c4e9f59-5272-48cf-a4a0-eeefcba955a9@roeck-us.net>
Hello Guenter,
Here is the list of i2c devices on my machine
grep . /sys/class/i2c-dev/*/name
/sys/class/i2c-dev/i2c-0/name:Synopsys DesignWare I2C adapter
/sys/class/i2c-dev/i2c-10/name:AMDGPU DM aux hw bus 1
/sys/class/i2c-dev/i2c-11/name:AMDGPU DM aux hw bus 2
/sys/class/i2c-dev/i2c-12/name:SMBus PIIX4 adapter port 0 at 0b00
/sys/class/i2c-dev/i2c-13/name:SMBus PIIX4 adapter port 2 at 0b00
/sys/class/i2c-dev/i2c-14/name:SMBus PIIX4 adapter port 1 at 0b20
/sys/class/i2c-dev/i2c-1/name:Synopsys DesignWare I2C adapter
/sys/class/i2c-dev/i2c-2/name:AMDGPU SMU 0
/sys/class/i2c-dev/i2c-3/name:AMDGPU SMU 1
/sys/class/i2c-dev/i2c-4/name:AMDGPU DM i2c hw bus 0
/sys/class/i2c-dev/i2c-5/name:AMDGPU DM i2c hw bus 1
/sys/class/i2c-dev/i2c-6/name:AMDGPU DM i2c hw bus 2
/sys/class/i2c-dev/i2c-7/name:AMDGPU DM i2c hw bus 3
/sys/class/i2c-dev/i2c-8/name:AMDGPU DM i2c OEM bus
/sys/class/i2c-dev/i2c-9/name:AMDGPU DM aux hw bus 0
The dmesg output I provided was captured with i2c debugging enabled.
When the issue occurred those are the only i2c transitions I saw.
I will try and add some additional logging and checks the controller
driver and see if there are any other i2c transactions with the same
symptoms.
> The only ideas I have is that somehow an access to another I2C bus
> messes up controller registers, or that there is a real hardware problem.
I am not against the determination that there might hardware issue,
however I got down this rabbit hole after I read a forum post on
level1techs where someone else had the exact issue with the same memory
kit. I have posted in that forum as well but have not gotten a reply.
The original post sounds very similar to this issue but the user never
reports on the actual SPD5118 registers so it is hard to know for sure.
https://forum.level1techs.com/t/msi-x870e-carbon-9950x-2x48gb-ram-bizzare-issues/222454/23
Thanks,
Matthew
On 8/31/26 6:38 PM, Guenter Roeck wrote:
> On 8/31/26 16:10, Matthew Bettencourt wrote:
>> Hi Guenter,
>>
>> I checked the i2c bus and there is nothing at address 0x22:
>>
>> # i2cdetect -y 12
>> 0 1 2 3 4 5 6 7 8 9 a b c d e f
>> 00: -- -- -- -- -- -- -- --
>> 10: -- -- -- -- -- 15 -- -- -- -- -- -- -- -- -- --
>> 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>> 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>> 40: -- -- -- -- -- -- -- -- -- 49 -- 4b -- -- -- --
>> 50: -- 51 -- 53 -- -- -- -- -- -- -- -- -- -- -- --
>> 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>> 70: -- 71 -- 73 -- -- --
>>
>
> That means that
>
>>>>> [ 277.574130] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a3, DAT0=00, DAT1=18
>>>>> [ 277.575552] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=01, ADD=45, DAT0=ff, DAT1=18
>>> ^^ ^^ ^^
>>> This is unexpected. It was supposed to read MR11 from 0x51, but the
>>> returned data is 0xff,
>>> and the CMD and ADD register values are changed. 0xff is returned to
>>> the calling code as MR11.
>>>
>
> this is a real problem. I don't really know what to suggest here. You could
> add some debugging code into the controller driver and check if / how often
> CMD or ADD changes its value between pre and post, and generate a log
> message
> if that happens. The value should never change. If it happens when
> reading MR11
> I suspect that it happens with other accesses as well.
>
> What I2C controllers do you have in your system ? "grep . /sys/class/
> i2c-dev/*/name"
> should tell. Also, do you see any other I2C transactions on other I2C
> busses ? The only ideas I have is that somehow an access to another I2C bus
> messes up controller registers, or that there is a real hardware problem.
>
> Thanks,
> Guenter
>
>>>>> [ 277.575617] [ T113] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=1a, ADD=a7, DAT0=ff, DAT1=18
>>>>> [ 277.576169] [ T113] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=1a, ADD=a7, DAT0=00, DAT1=18
>>>
>>> Read MR26 of 0x53 (=0x00, enabled)
>>>
>>>>> [ 277.576237] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a2, DAT0=f8, DAT1=18
>>>>> [ 277.577061] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=0b, ADD=a2, DAT0=f8, DAT1=18
>>>
>>> Write 0xf8 into MR11 of 0x51. This is where things go wrong. The call
>>> originates
>>> from regmap, which tries to configure page 0 (lower 3 bit) while
>>> leaving the upper
>>> bits alone (which were 0xff from above corrupted read).
>>>
>>>>> [ 277.577121] [ T113] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a7, DAT0=f8, DAT1=18
>>>>> [ 277.578063] [ T113] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=0b, ADD=a7, DAT0=00, DAT1=18
>>>
>>> Read MR11 of 0x53 (=0x00)
>>>
>>>>> [ 277.578127] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=1a, ADD=a3, DAT0=00, DAT1=18
>>>>> [ 277.579062] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=1a, ADD=a3, DAT0=00, DAT1=18
>>>
>>> Read MR26 of 0x51 (0x00 -> enabled)
>>>
>>>>> [ 277.579131] [ T113] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=1a, ADD=a6, DAT0=01, DAT1=18
>>>>> [ 277.579560] [ T113] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=1a, ADD=a6, DAT0=01, DAT1=18
>>>
>>> Disable temperature sensor support on 0x53 (MR26 := 0x01)
>>>
>>>>> [ 277.579620] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a3, DAT0=01, DAT1=18
>>>>> [ 277.580170] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=0b, ADD=a3, DAT0=08, DAT1=18
>>>
>>> Read MR11 of 0x51. Since 0xf8 was written above, 0x08 is "as expected".
>>>
>>>>> [ 277.580234] [ T113] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a7, DAT0=08, DAT1=18
>>>>> [ 277.581061] [ T113] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=0b, ADD=a7, DAT0=00, DAT1=18
>>>
>>> Read MR11 of 0x53 (0x00 -> page 0)
>>>
>>>>> [ 277.581072] [ T113] spd5118 12-0053: POST BIT UPDATE: SUSPEND
>>>>> MR11 (0x0B) -> Cache: 0x00 | Bus: 0x00
>>>>> [ 277.581128] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=1a, ADD=a2, DAT0=01, DAT1=18
>>>>> [ 277.581559] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=1a, ADD=a2, DAT0=01, DAT1=18
>>>
>>> Disable temperature sensor support on 0x51 (MR26 := 0x01)
>>>
>>>>> [ 277.581626] [ T3293] i2c i2c-12: Transaction (pre): CNT=08,
>>>>> CMD=0b, ADD=a3, DAT0=01, DAT1=18
>>>>> [ 277.582236] [ T3293] i2c i2c-12: Transaction (post): CNT=08,
>>>>> CMD=0b, ADD=a3, DAT0=08, DAT1=18
>>>
>>> Read MR11 from 0x51, wrong as before
>>>
>>>>> [ 277.582250] [ T3293] spd5118 12-0051: POST BIT UPDATE: SUSPEND
>>>>> MR11 (0x0B) -> Cache: 0x00 | Bus: 0x08
>>>>>
>>>>>
>>>>> --- The logs that are of interest ---
>>>>> [ 277.573085] [ T3293] spd5118 12-0051: PRE BIT UPDATE: SUSPEND
>>>>> MR11 (0x0B) -> Cache: 0x00 | Bus: 0x00
>>>>> …
>>>>> …
>>>>> …
>>>>> [ 277.582250] [ T3293] spd5118 12-0051: POST BIT UPDATE: SUSPEND
>>>>> MR11 (0x0B) -> Cache: 0x00 | Bus: 0x08
>>>>>
>>>>> I enabled i2c debugging as well in case it helps. The lines I
>>>>> focusing on are “PRE BIT UPDATE…” and “POST BIT UPDATE…”,
>>>>> immediately after regmap_update_bits() the physical bus value for
>>>>> MR11 shifts to 0x08 while the regmap cache remains 0x00.
>>>>>
>>>>> I looked through the history of spd5118 patches and bugs and
>>>>> noticed there has been some issues around suspend and sleep cycles.
>>>>> This might be a deeper issue than just the spd5118 driver.
>>>>>
>>>
>>> Those problems are related to I2C controllers on some Intel boards,
>>> which disable
>>> write operations. That does not affect AMD systems.
>>>
>>> The problem is that one of the MR11 read operations fails or, rather,
>>> returns
>>> bad data. This bad data then corrupts the register when written back.
>>> This by itself is odd. There should be at least a debug log message
>>> if there is
>>> an error in piix4_transaction(). Is there anything on address 0x22 on
>>> that I2C bus ?
>>> It almost appears as if there is a parallel access to the I2C
>>> controller (for
>>> example from ACPI) which would corrupt the data for the spd5118 access.
>>>
>>>>> Additional Notes:
>>>>> - Intermittent Nature: The issue is intermittent and typically
>>>>> reproduces within ~10 sleep/resume cycles.
>>>>>
>>>>> - Single DIMM Testing: I was unable to reproduce the issue with
>>>>> only 1 DIMM installed after running over 30 sleep/resume cycles,
>>>>> though the intermittent nature makes it hard to rule out entirely.
>>>>>
>>>
>>> Both is not surprising, given that we are dealing with corrupted data
>>> when
>>> reading from MR11. I have no idea how that corruption can happen. The
>>> above
>>> is a wild guess: If there is indeed ACPI access to the I2C
>>> controller, the
>>> only remedy I can think of would be to black-list the I2C controller
>>> driver
>>> itself.
>>>
>>> Thanks,
>>> Guenter
>>>
>>>>> - Hardware Health: Memory stability was verified with a varitey of
>>>>> memory tests with zero errors. Issue occurs with JEDEC and XMP
>>>>> profiles enabled
>>>>>
>>>>>
>>>>> --- Steps to Reproduce ---
>>>>> 1. Boot system from cold boot. Load the spd5118 driver.
>>>>> 2. Put system to sleep
>>>>> 3. Wake system
>>>>> 4. Check value of MR11, if corrupted warm reboot go to step 7
>>>>> 6. Go to step 2, repeat
>>>>> 7. System now shows corrupted DIMM with a size of 2GB
>>>>>
>>>>> --- My test spd5118_suspend function ---
>>>>> static int spd5118_suspend(struct device *dev)
>>>>> {
>>>>> struct spd5118_data *data = dev_get_drvdata(dev);
>>>>> struct regmap *regmap = data->regmap;
>>>>> u32 cache_val = 0, bus_val = 0;
>>>>> u32 regval;
>>>>> int err;
>>>>>
>>>>> err = regmap_read(regmap, SPD5118_REG_TEMP_CONFIG, ®val);
>>>>> if (err < 0)
>>>>> return err;
>>>>>
>>>>>
>>>>> /* 1. Read cached MR11 value from RAM */
>>>>> regmap_read(regmap, SPD5118_REG_I2C_LEGACY_MODE, &cache_val);
>>>>>
>>>>> /* 2. Read physical MR11 value directly from I2C bus */
>>>>> regcache_cache_bypass(regmap, true);
>>>>> regmap_read(regmap, SPD5118_REG_I2C_LEGACY_MODE, &bus_val);
>>>>> regcache_cache_bypass(regmap, false);
>>>>>
>>>>> /* 3. Output both on the exact same log line */
>>>>> dev_info(dev, "PRE BIT UPDATE: SUSPEND MR11 (0x0B) -> Cache:
>>>>> 0x%02x | Bus: 0x%02x\n", cache_val, bus_val);
>>>>>
>>>>> regcache_cache_bypass(regmap, true);
>>>>> regmap_update_bits(regmap, SPD5118_REG_TEMP_CONFIG,
>>>>> SPD5118_TS_DISABLE,
>>>>> SPD5118_TS_DISABLE);
>>>>> regcache_cache_bypass(regmap, false);
>>>>>
>>>>> /* 1. Read cached MR11 value from RAM */
>>>>> regmap_read(regmap, SPD5118_REG_I2C_LEGACY_MODE, &cache_val);
>>>>>
>>>>> /* 2. Read physical MR11 value directly from I2C bus */
>>>>> regcache_cache_bypass(regmap, true);
>>>>> regmap_read(regmap, SPD5118_REG_I2C_LEGACY_MODE, &bus_val);
>>>>> regcache_cache_bypass(regmap, false);
>>>>>
>>>>> /* 3. Output both on the exact same log line */
>>>>> dev_info(dev, "POST BIT UPDATE: SUSPEND MR11 (0x0B) -> Cache:
>>>>> 0x%02x | Bus: 0x%02x\n", cache_val, bus_val);
>>>>>
>>>>> regcache_cache_only(regmap, true);
>>>>> regcache_mark_dirty(regmap);
>>>>>
>>>>> return 0;
>>>>> }
>>>>
>>>
>>
>
next prev parent reply other threads:[~2026-09-01 0:16 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-30 23:21 Matthew Bettencourt
2026-08-31 15:12 ` Guenter Roeck
2026-08-31 17:28 ` Guenter Roeck
2026-08-31 23:36 ` Matthew Bettencourt
[not found] ` <37132c40-aa82-4df1-b5ce-337601f3c085@gmail.com>
[not found] ` <3c4e9f59-5272-48cf-a4a0-eeefcba955a9@roeck-us.net>
2026-09-01 0:16 ` Matthew Bettencourt [this message]
2026-09-01 3:10 ` Guenter Roeck
2026-09-01 16:31 ` Matthew Bettencourt
2026-09-01 17:04 ` Guenter Roeck
2026-09-01 20:53 ` Matthew Bettencourt
2026-09-01 22:36 ` Guenter Roeck
2026-09-02 0:57 ` Matthew Bettencourt
2026-09-02 1:32 ` Guenter Roeck
2026-09-02 2:14 ` Matthew Bettencourt
2026-09-02 3:19 ` Guenter Roeck
2026-09-02 14:00 ` Matthew Bettencourt
2026-09-02 14:52 ` Guenter Roeck
2026-09-02 15:26 ` Matthew Bettencourt
2026-09-02 17:21 ` Guenter Roeck
2026-09-02 17:37 ` Matthew Bettencourt
2026-09-02 16:57 ` Armin Wolf
2026-09-02 17:08 ` Matthew Bettencourt
2026-09-02 17:22 ` Armin Wolf
2026-09-02 17:28 ` Matthew Bettencourt
2026-09-02 19:19 ` Armin Wolf
2026-09-02 19:25 ` Matthew Bettencourt
2026-09-02 19:31 ` Armin Wolf
2026-09-02 19:40 ` Matthew Bettencourt
2026-09-02 19:51 ` Armin Wolf
2026-09-03 18:01 ` Matthew Bettencourt
2026-09-03 18:16 ` Guenter Roeck
2026-09-03 18:25 ` Matthew Bettencourt
2026-09-03 21:05 ` Guenter Roeck
2026-09-03 22:47 ` Armin Wolf
2026-09-04 0:24 ` Matthew Bettencourt
2026-09-04 17:58 ` Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=763a8b30-8548-4ff0-a1e9-8e74bbfe9b02@gmail.com \
--to=matthew.bettencourt@gmail.com \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®