Hi,
I have a faulty Sapphire Radeon RX5700XT with a short on the 3.3V PCIe rail. I was able to trace the short to the IR35217 which is responsible for managing VCore. The issue with these controllers is, that they need to be configured. I managed to get hold of a copy of PowIRCenter as well as a compatible USB flash device. What remains is, that I don't have the IR35217 configuration for that card. Does someone here own this card and can share this configuration? As this is a reference card design I would suspect that any other reference card would do the trick as well. The configuration can be easily dumped with any recent Linux system:
As I have a Sapphire Radeon RX5700XT Nitro+ I can share the dump that I was able to grep from that card:
Thank you!
I have a faulty Sapphire Radeon RX5700XT with a short on the 3.3V PCIe rail. I was able to trace the short to the IR35217 which is responsible for managing VCore. The issue with these controllers is, that they need to be configured. I managed to get hold of a copy of PowIRCenter as well as a compatible USB flash device. What remains is, that I don't have the IR35217 configuration for that card. Does someone here own this card and can share this configuration? As this is a reference card design I would suspect that any other reference card would do the trick as well. The configuration can be easily dumped with any recent Linux system:
Code:
DISCLAIMER: Changing values on I2C can permanently damage your hardware. Proceed at your own risk. You should be fine following these steps but I don't take any responsibility if you brick your card. # First you need to load the required kernel modules sudo modprobe i2c-dev sudo modprobe i2c-piix4 # To list all your I2C busses run: sudo i2cdetect -l # To list all devices on a specific bus run # sudo i2cdetect <busnumber> # For example for bus 0 you have to run: sudo i2cdetect 0 # At least on a Sapphire Radeon RX5700XT Nitro+ the IR35217 was on I2C bus 3 with the address 0x30 which can than be dumped via: sudo i2cdump -y 3 0x30
Code:
sudo i2cdump -y 3 0x30 No size specified (using byte-data access) 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 00: 94 79 7f 76 54 4d 39 1b 66 61 60 2f 2d 2b 38 2d ?y?vTM9?fa`/-+8- 10: 56 63 5e 4a 61 68 0c 07 1d b9 3a 8c 00 ff ff 5f Vc^Jah????:?..._ 20: 02 5c e1 62 b0 22 10 2a ff 40 00 00 00 00 00 00 ?\?b?"?*.@...... 30: 00 00 00 00 00 e8 e8 14 22 ff 00 34 f0 10 10 62 .....???"..4???b 40: 9a 6a 5a 1d 59 28 45 0f b8 de db 50 48 08 51 1c ?jZ?Y(E????PH?Q? 50: fe 66 a8 90 a0 90 41 40 00 00 00 f9 4a 14 88 00 ?f????A@...?J??. 60: 80 00 80 ff ff 00 cc 08 cc cc 08 02 01 48 11 32 ?.?...???????H?2 70: 03 70 71 ff ab f3 8a 38 61 09 84 88 00 00 00 00 ?pq.???8a???.... 80: 00 07 00 52 49 00 00 00 01 04 00 00 00 00 00 00 .?.RI...??...... 90: 00 00 05 ff be 22 00 00 d5 fd 00 00 00 00 fb fb ..?.?"..??....?? a0: 20 06 23 f0 06 16 00 00 00 00 00 00 00 00 00 00 ?#???.......... b0: 84 7c 02 70 61 00 01 00 11 55 18 73 7b 61 7e 00 ?|?pa.?.?U?s{a~. c0: 00 23 a2 05 8d 00 f4 c2 00 01 00 00 00 03 00 40 .#???.??.?...?.@ d0: 0c ad 00 00 00 3f 00 c0 e4 0f 00 00 00 02 00 00 ??...?.???...?.. e0: 00 00 00 00 00 00 00 80 07 01 00 00 00 00 00 00 .......???...... f0: 00 00 00 00 00 00 00 00 00 00 04 5f 49 52 00 00 ..........?_IR..
Comment