a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Official project repository on GitHub: https://github.com/1a2m3/SPD-Reader-Writer Latest binaries: https://github.com/1a2m3/SPD-Reader-Writer/releases Latest firmware:https://github.com/1a2m3/SPD-Reader-Writer/tree/master/firmware Guide:Part 1 - hardware Wire up your Arduino + DIMM according to the schematic below: Click image to see full version. PDF can be found here The schematic shows modules divided into sections: - Arduino section shows pins used on Nano V3 model. Use its 3.3V pin as a VCC source. If your Arduino doesn't have a dedicated 3.3V output, use a step-down 3.3V regulator, like LM7833. Pins labeled SA1_EN, HV_EN, and HV_FB can be assigned in "SpdReaderWriterSettings.h" file. 5V pin is required to power a 9V step-up converter (HV_SOURCE) and DDR5.
- HV_CTL and one of 9V sources are needed to enable and detect 9V on SA0 for RSWP related operations. Use either a step-up/boost converter (HV_SOURCE), or a 9V battery (HV_SOURCE_ALT), not both!
- SA1_CTL is used to switch pin SA1 on EEPROM between VCC and ground. This is needed because RSWP-supported EEPROMs used on DDR3 and DDR2 require different SA1 configurations to enable or disable RSWP. It is also used to prevent addressing conflicts when DDR5 is used.
Refer to your Arduino model pinout, on my Nano model SDA and SCL are A4 and A5, respectively: https://www.arduino.cc/en/reference/wire Parts list: - Arduino: Nano V3 or any AVR-based model with I2C / TWI interface.
- OK1: PC817 or any general purpose optocoupler with a maximum collector to emitter voltage above 10V and a diode current below 40mA and forward voltage below 5V.
- R1, R2: Pull up resistor for I2C lines.
- R3: Current limiting resistor for optocoupler diode, values between 390Ω and 560Ω work fine.
- R4, R5: Voltage divider for HV feedback (HV_FB) on SA0. The values used will work for 5V and 3.3V Arduinos.
- R6: Pull up resistor for SA1 pin.
- D1: Any general purpose schottky diode.
- C1: 6.3V, 560uF
EEPROM pins to DIMM pins guide: DDR5: VIN_BULK=1, HSCL=4, HSDA=5, HSA=148, PWR_EN=151, GND=6* DDR4: SA0=139, SA1=140, SA2=238, GND=2*, SDA=285, SCL=141, VDDSPD=284, WP/EVENT_n=78 DDR3: SA0=117, SA1=237, SA2=119, GND=2*, SDA=238, SCL=118, VDDSPD=236 DDR2: SA0=239, SA1=240, SA2=101, GND=4*, SDA=119, SCL=120, VDDSPD=238 DDR: SA0=181, SA1=182, SA2=183, GND=3*, SDA=91, SCL=92, VDDSPD=184 SDRAM: SA0=165, SA1=166, SA2=167, GND=1*, SDA=82, SCL=83, VDDSPD=168 * There are multiple GND pins on DIMMs, the table shows just one of them for each RAM type. DDR5 UDIMM pins locations:   DDR4 DIMM pins locations:  Obviously don't solder wires directly to DIMM contacts or motherboard solder points, get a spare slot from components resellers, like Digikey, or get a DIMM adapter, like the one pictured below. Those are cheap, and have pins labeled for easy identification.  Part 2 - Firmware
Upload firmware to your Arduino once everything is assembled. Both files are required. Make sure the values in SpdReaderWriterSettings.h match the pins names you used if your pins differ from the ones in the guide. Part 3 - Windows GUI application Latest application can always be found here: https://github.com/1a2m3/SPD-Reader-Writer/releases The application requires .NET framework 4 or later to be installed. Supported OSs are Windows XP SP3 and up. The application is compiled for x86 architecture, so both 32 bit and 64 bit OSs are supported. Once your device is assembled and tested, start the program. Click "Connect" toolbar button, make sure selected baud rate matches the one you programmed, select your device from the list, and click "Connect" to start working: Click on the device identified by its serial port name and EEPROM address detected on its I2C bus to start working with it. Part 4 - Windows Console application The program can read and write bytes, and enable or disable write protection. The operation depends on its command line arguments. The supported arguments are: /help /find /scan <PORT> /read <PORT> <ADDRESS#> <filepath> /silent /write <PORT> <ADDRESS#> <FILEPATH> /silent /writeforce <PORT> <ADDRESS#> <FILEPATH> /silent /enablewriteprotection <PORT> <ADDRESS#> /enablewriteprotection <PORT> <ADDRESS#> <block#> /disablewriteprotection <PORT> <ADDRESS#> /enablepermanentwriteprotection <PORT> <ADDRESS#> The parameters in CAPS are mandatory. Parameter <filepath> is optional when /read switch is used, output will be printed to console only. You'll need to know two parameters to work your DIMM - port name and EEPROM address. To find out what port your device is using, run this command: spdrwcli.exe /find If everything works, you'll get a port name your device is connected to: Found Device on Serial Port: COM3 In my case it is COM3. If the program can't find any devices, make sure the sketch is properly uploaded to your Arduino and no other application is using your Arduino's serial port - that includes Arduino IDE Serial Monitor. Close it, if you have it open. With a DDR4 DIMM present you'll want to scan your device for EEPROM addresses on I2C bus. With SA0-SA2 connected to ground, the address will be 80, however, it is still recommended to run this test to ensure the EEPROM is detected: spdrwcli.exe /scan COM3 In most cases, if everything is fine, you'll see a device at address 80 detected: Found EEPROM at address: 80 When I used DDR4 slots cut out of an old motherboard with both DIMMs populated, both were detected at addresses 80 and 82, even though I soldered wires to one slot only: Found EEPROM at address: 80 Found EEPROM at address: 82 To read SPD from your DIMM, run: spdrwcli.exe /read COM3 80 This will output SPD contents in HEX on screen. Plain and simple. Reading EEPROM at address 80
000: 23 10 0C 02 84 19 00 08 00 00 00 03 01 03 00 00 010: 00 00 08 0C F4 1B 00 00 6C 6C 6C 11 00 74 20 08 020: 00 05 70 03 00 A8 1E 2B 2B 00 00 00 00 00 00 00 --edited on purpose-- 1D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 1E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 1F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Read 512 bytes from EEPROM at address 80 on port COM3 in 1547 ms To save SPD to file, add a file path at the end. File path can be absolute or relative. If file path has spaces in it, enclose it in "double quotes": spdrwcli.exe /read COM3 80 C:\temp\spdoutput.bin spdrwcli.exe /read COM3 80 "C:\temp\my ddr4 spd file.bin" Reading EEPROM at address 80 to C:\temp\my ddr4 spd file.bin
000: 23 10 0C 02 84 19 00 08 00 00 00 03 01 03 00 00 --edited on purpose-- 1F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Read 512 bytes from EEPROM at address 80 on port COM3 in 1562 ms to file "C:\temp\my ddr4 spd file.bin" Edit your SPD in a HEX editor or any specialized program, like Thaiphoon Burner. To write your new SPD to DIMM, run: spdrwcli.exe /write COM3 80 C:\temp\newspd.bin EEPROMs have limited number of write cycles, sometimes between 10,000 and 1,000,000. By default, the program writes bytes only if they differ from existing values. By doing that, it first reads a byte and if it matches the input value, the write operation is skipped. Byte is written only it it needs to. If you want to force writes, regardless of existing SPD data, use /writeforce switch instead of /write . It will take a bit longer (5-10 s.) because of required delays after each write. Writing "C:\temp\my ddr4 spd file.bin" (512 bytes) to EEPROM at address 80
000: 23 10 0C 02 84 19 00 08 00 00 00 03 01 03 00 00 010: 00 00 08 0C F4 1B 00 00 6C 6C 6C 11 00 74 20 08 020: 00 05 70 03 00 A8 1E 2B 2B 00 00 00 00 00 00 00 --edited on purpose-- 1D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 1E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 1F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Written 512 bytes to EEPROM at address 80 on port COM3 in 7093 ms Optionally, to hide progress you may add /silent switch at the end after a file path is specified when using /read , /write , or /writeforce switches: spdrwcli.exe /read COM3 80 C:\temp\spdoutput.bin /silent spdrwcli.exe /write COM3 80 C:\temp\newspd.bin /silent You may protect the entire EEPROM from writing with this command: spdrwcli.exe /enablewriteprotection COM3 If the blocks weren't write-protected previously, you'll receive a response like this: Block 0 is now read-only Block 1 is now read-only Block 2 is now read-only Block 3 is now read-only Or enable write protection on each individual block by specifying block number (0-3): spdrwcli.exe /enablewriteprotection COM3 0 spdrwcli.exe /enablewriteprotection COM3 2 Each block specifies a section of 128 bytes. Block 0 is bytes at offset 0-127, block 1 is bytes 128-255, and so on. Please note the address isn't used, only port number. That's because RSWP commands don't use addresses, all devices on the I2C bus will act simultaneously. To clear write protection, run the following command: spdrwcli.exe /disablewriteprotection COM3 Again, the device address isn't used. Once write-protection is cleared, you'll see this response: Write protection successfully disabled. To enable permanent write protection, run this command: spdrwcli.exe /enablepermanentwriteprotection COM3 80 Please note permanent protection can be enabled on most DDR3 and some DDR2 modules. DDR4 does not support permanent software write protection. That's all for now. I'm always open to suggestions and comments. Feel free to report any bugs or ask to add any feature you'd like to see in the project, whether it's related to hardware, firmware, or applications.
post edited by a213m - Thursday, November 02, 2023 8:57 PM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
jfw06013
SSC Member
- Total Posts : 587
- Reward points : 0
- Joined: 2/14/2017
- Status: offline
- Ribbons : 4
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Thursday, May 14, 2020 7:10 AM
(permalink)
I just started with Arduino and I am very interested in you project.
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Friday, May 15, 2020 10:06 AM
(permalink)
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
Cool GTX
EVGA Forum Moderator
- Total Posts : 31353
- Reward points : 0
- Joined: 12/12/2010
- Location: Folding for the Greater Good
- Status: offline
- Ribbons : 123

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Friday, May 15, 2020 2:02 PM
(permalink)
sounds interesting can damaged/ corrupted SPD code be overwritten -- Recovered ?
Cause you know someone will OC it too far
Learn your way around the EVGA Forums, Rules & limits on new accounts Ultimate Self-Starter Thread For New Members
I am a Volunteer Moderator - not an EVGA employee
Older RIG projects RTX Project Nibbler
 When someone does not use reason to reach their conclusion in the first place; you can't use reason to convince them otherwise!
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, May 16, 2020 5:19 AM
(permalink)
Look what came in the mail today after weeks months of waiting. Now I no longer have to use slots I cut out of a dead motherboard. Cool GTX sounds interesting can damaged/ corrupted SPD code be overwritten -- Recovered ?
Cause you know someone will OC it too far
Yes, provided you have a backup of correct SPD data, or a working DIMM. I'll aslo implement a CRC checker into the Windows app. In won't be accessible via command line switches initially, but rather by calling a function directly. Edit: Arduino sketch is posted, link is in the first post.
post edited by a213m - Saturday, May 16, 2020 5:32 AM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
TiN_EE
Yes, that TiN
- Total Posts : 377
- Reward points : 0
- Joined: 1/23/2010
- Location: xDevs.com
- Status: offline
- Ribbons : 14

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, May 16, 2020 5:55 PM
(permalink)
Nice work. You can just buy slots from component retailers such as Digikey. I've did this back in 2014 for internal use and testing at EVGA R&D lab :) My box designed for onboard MCU or couples with Raspberry Pi. Worklog and code : https://xdevs.com/article/ddr4s/ Beware, many SPDs on memories are actually write-protected, so you can read them, but cannot write/modify. :)
post edited by TiN_EE - Saturday, May 16, 2020 6:01 PM
If you have question, please post in public forum. I do not reply PMs, so all in community can benefit the answer.
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, May 16, 2020 9:41 PM
(permalink)
Thanks. So far I haven't encountered any write protected EEPROMs, in fact the DIMMs I used in my tests use EEPROMs which lack permanent write protection capabilities. I'll start working on software write protection enabling/disabling capabilities soon. It will require a couple more components added to the circuit and an additional 9V source. The project is complete. Windows binary and sources + updated Arduino sketch are up. Links are in the first post.
post edited by a213m - Saturday, May 16, 2020 9:44 PM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, May 20, 2020 7:49 AM
(permalink)
I got some bad news and (as a result) good news. Today I finally stumbled upon a kit of G.Skill DIMMs with write-protected EEPROMs, which can be read, but can't be modified, unless write protection is reversed. But that's history now, I just wanted to announce I implemented a software reversible write protection clearing function in my project. It can't be implemented with software alone as it requires an update to both hardware and software, since it requires an additional external DC power source from 7V-10V, which Arduino alone isn't capable of providing, so stay tuned for updated schematics and code.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Friday, May 22, 2020 11:24 AM
(permalink)
Update: 22.05.2020 - now with write protection reversing and enabling options Updated schematics, description, firmware, binary, and sources are in the first post.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Sunday, May 24, 2020 8:29 AM
(permalink)
May 24 update - fixed an issue where bytes were not written to higher half of EEPROM, if the second half was identical to the first half when using "/write" switch. Updated links are in the first post, as usual. PS: Aslo, because in 2020 RGB has to be everywhere, I added a color byte display. It's enabled by default, to disable it, set "color" boolean parameter to "false" where DisplayByte() function is called. Random bytes written to show as many colors as possible:
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
TiN_EE
Yes, that TiN
- Total Posts : 377
- Reward points : 0
- Joined: 1/23/2010
- Location: xDevs.com
- Status: offline
- Ribbons : 14

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Sunday, May 24, 2020 5:18 PM
(permalink)
Nice work. I'd suggest upload your project to github or smth, so others can contribute too :)
If you have question, please post in public forum. I do not reply PMs, so all in community can benefit the answer.
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Tuesday, May 26, 2020 8:27 AM
(permalink)
Sure, I'll do that later. But before sharing the project with bigger audience, I'll also add a GUI interface, even though I didn't plan on doing that when I started working on it. To do that I'll move 'Device' and 'Eeprom' classes to a separate library (dll), which will be used both by the the console app I've been working on since the beginning and the new GUI version I just started working on. That way I can work on both versions while not having to maintain two separate projects with duplicate portions of the same code.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
Cool GTX
EVGA Forum Moderator
- Total Posts : 31353
- Reward points : 0
- Joined: 12/12/2010
- Location: Folding for the Greater Good
- Status: offline
- Ribbons : 123

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Tuesday, May 26, 2020 8:28 PM
(permalink)
looks like you have made some good progress on your project
Learn your way around the EVGA Forums, Rules & limits on new accounts Ultimate Self-Starter Thread For New Members
I am a Volunteer Moderator - not an EVGA employee
Older RIG projects RTX Project Nibbler
 When someone does not use reason to reach their conclusion in the first place; you can't use reason to convince them otherwise!
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, May 27, 2020 8:20 PM
(permalink)
Yeah, it's expanding in features as my personal demands and requirements grow.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Friday, May 29, 2020 2:28 AM
(permalink)
The GUI version is being finalized, and it works fine, but looks horrible. But I'm a programmer, not a UI designer, so there's my excuse for bad interface. Reader: Writer: Write protection: Debug:
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
TiN_EE
Yes, that TiN
- Total Posts : 377
- Reward points : 0
- Joined: 1/23/2010
- Location: xDevs.com
- Status: offline
- Ribbons : 14

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Friday, May 29, 2020 4:45 AM
(permalink)
I disagree on looks aspect. It is functional and clean. None of the shiny graphics stuff, that makes simple tool that need to do the job weight 200 MB. Perhaps you could improve usability a bit more by grouping hex bytes in 16 row, 8 column group representation and add some address offset map on the left side. You know, just like hex editors. Maybe if you want to add some bling - you could add few information text blocks, showing DDR type (RDIMM, UDIMM, LRDIMM, etc), module size, organization, manufacturer and base timings/speed and brief XMP profile info. You can get all that from SPD decode document, should be quite easy. If you really go in, then in-place edit function for automatic correction would make it real sweet and replace Taiphoonburner. Little help box in "about" menu could be handy, with paypal link for donations for your efforts ;)
If you have question, please post in public forum. I do not reply PMs, so all in community can benefit the answer.
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, May 30, 2020 2:45 AM
(permalink)
☄ Helpfulby TiN_EE Saturday, May 30, 2020 4:55 AM
Thanks, good suggestions, I'll consider them. I'll also be redesigning the GUI. No more tabs, the main window will be primarily focused around a viewer, which will be displaying data from EEPROM or a file, while all other functions will be assigned to submenu items and toolbar buttons. This is still a WIP concept, I'm still working on it, final version might change.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Monday, June 01, 2020 8:35 AM
(permalink)
Made some progress here, the GUI is 99% complete, (I hope), at least all desired functionality I've been trying to implement is implemented, and there are no bugs, at least none obvious, I only have some cosmetic stuff left to finish. Also I went back to tabbed interface for now to implement a data viewer and a logger on the same window. Edit: see 1st post
post edited by a213m - Saturday, June 06, 2020 0:14 PM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, June 06, 2020 0:12 PM
(permalink)
☄ Helpfulby TiN_EE Tuesday, June 09, 2020 12:53 AM
The GUI is ready and the project is now on GitHub https://github.com/1a2m3/SPD-Reader-Writer The functionality is same, you can still read and write SPDs, and set or clear write protection on selected EEPROMs, however, there are some differences between the GUI version and the console app: - GUI version does not accept command-line arguments - the functions are called from menu items and toolbar buttons
- Devices are found automatically, if available - you don't need to scan ports and addresses
- GUI version writes SPDs in update mode only - bytes are written only if necessary to reduce EEPROM write cycles
- GUI version sets write protection on all blocks - use the console version if you want to write protect individual blocks
- GUI version doesn't have colored byte display
- GUI version has a CRC checker & fixer, program logger, and a screenshot utility

post edited by a213m - Saturday, June 06, 2020 10:11 AM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
Cool GTX
EVGA Forum Moderator
- Total Posts : 31353
- Reward points : 0
- Joined: 12/12/2010
- Location: Folding for the Greater Good
- Status: offline
- Ribbons : 123

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, June 06, 2020 0:29 PM
(permalink)
 sweet
Learn your way around the EVGA Forums, Rules & limits on new accounts Ultimate Self-Starter Thread For New Members
I am a Volunteer Moderator - not an EVGA employee
Older RIG projects RTX Project Nibbler
 When someone does not use reason to reach their conclusion in the first place; you can't use reason to convince them otherwise!
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Saturday, June 20, 2020 10:13 PM
(permalink)
New experimental feature - Thaiphoon Burner dump import. I just realized the free version of Thaiphoon Burner doesn't allow SPDs to be saved in binary format, so I implemented an SPD importer in my program which will allow loaded SPDs to be read from Thaiphoon Burner. I'm still testing it, once I'm sure it is bug-free, I'll post updated sources and binaries.
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
Cool GTX
EVGA Forum Moderator
- Total Posts : 31353
- Reward points : 0
- Joined: 12/12/2010
- Location: Folding for the Greater Good
- Status: offline
- Ribbons : 123

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Sunday, June 21, 2020 5:51 PM
(permalink)
thanks for the update
Learn your way around the EVGA Forums, Rules & limits on new accounts Ultimate Self-Starter Thread For New Members
I am a Volunteer Moderator - not an EVGA employee
Older RIG projects RTX Project Nibbler
 When someone does not use reason to reach their conclusion in the first place; you can't use reason to convince them otherwise!
|
rjohnson11
EVGA Forum Moderator
- Total Posts : 85038
- Reward points : 0
- Joined: 10/5/2004
- Location: Netherlands
- Status: offline
- Ribbons : 86

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, June 24, 2020 11:03 AM
(permalink)
We only allow posts in the English language so your posts will be deleted.
|
Propretor
New Member
- Total Posts : 17
- Reward points : 0
- Joined: 6/23/2020
- Status: offline
- Ribbons : 0
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, June 24, 2020 11:15 AM
(permalink)
This is a very good project. Thank you very much for your work! I've been doing data correction in SPD DIMM for a long time, but all RSWP deprotection tools are very expensive. Your project is very important for not rich people. I have not met with the Arduino platform before. At the moment, there is reason to become familiar with this platform. So. I want to ask questions and share my thoughts. 1. I have an Arduino Micro Leonardo: Instead of D6, do I need to use pin D7, and instead of A4 and A5 - D2 and D3? 2. For what purpose are you using contact EVENT_N? This contact is not used in the EEPROM 34C04 chip:  3. Why is your SA1 always grounded? According to the standard:  CWP requires a high level on pin SA1 Vddspd !!!
post edited by Propretor - Wednesday, June 24, 2020 11:21 AM
|
Propretor
New Member
- Total Posts : 17
- Reward points : 0
- Joined: 6/23/2020
- Status: offline
- Ribbons : 0
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, June 24, 2020 11:20 AM
(permalink)
Contact EVENT_N is used only by the thermal sensor and is not used when reading and writing the SPD chip:
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Wednesday, June 24, 2020 9:05 PM
(permalink)
Propretor This is a very good project. Thank you very much for your work! I've been doing data correction in SPD DIMM for a long time, but all RSWP deprotection tools are very expensive. Your project is very important for not rich people. I have not met with the Arduino platform before. At the moment, there is reason to become familiar with this platform. So. I want to ask questions and share my thoughts. 1. I have an Arduino Micro Leonardo: Instead of D6, do I need to use pin D7, and instead of A4 and A5 - D2 and D3?
Yes, you have to use 2 and 3 for SDA and SCL lines. For high voltage switch pin you can use any of the digital pins, just edit the sketch accordingly. Also you'll need to source an external power supply for VDDSPD as Arduino Micro Leonardo has no 3.3V output. Propretor 2. For what purpose are you using contact EVENT_N? This contact is not used in the EEPROM 34C04 chip:
It's grounded for compatibility. Older EEPROMs used pin 7 to configure hardware write protection. EEPROMs used on DDR4 modules I worked with recommend to have this pin left alone or grounded. Propretor 3. Why is your SA1 always grounded? According to the standard: CWP requires a high level on pin SA1 Vddspd !!!
I don't know where you got that information from, but connecting SA1 to VDD would only change device address, which is relevant for read and write operations. Device addresses are ignored when issuing RSWP commands. Just because bit 2 of CWP command is set to 1, doesn't mean SA1 has to be physically wired to VDDSPD. None of EEPROMS I've encountered with require SA1 or SA2 to be configured in specific way for write protection operations. Only SA0 has to be connected to high voltage source.
post edited by a213m - Thursday, June 25, 2020 3:49 AM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|
Propretor
New Member
- Total Posts : 17
- Reward points : 0
- Joined: 6/23/2020
- Status: offline
- Ribbons : 0
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Thursday, June 25, 2020 12:00 AM
(permalink)
Hi! Unfortunately, I can not respond to 5 forum posts personally. While working with the SpdReaderWriterGUI.exe program, I had 2 comments. 1. The program starts for a very long time from 10 to 40 seconds on my computer:  2. 2.After starting, the program sometimes freezes with an error message:
|
Propretor
New Member
- Total Posts : 17
- Reward points : 0
- Joined: 6/23/2020
- Status: offline
- Ribbons : 0
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Thursday, June 25, 2020 12:17 AM
(permalink)
a213m For high voltage switch pin you can use any of the digital pins, just edit the sketch accordingly.
Alas, I do not know the Arduino programming environment and planned to use the Windows GUI application. There is something to correct at all is not possible. a213m Also you'll need to source an external power supply for VDDSPD as Arduino Micro Leonardo has no 3.3V output. In my opinion, if we close the jumper, then we will have a 3.3V version:  a213m It's grounded for compatibility. Older EEPROMs used pin 7 to configure hardware write protection. EEPROMs used on DDR4 modules I worked with recommend to have this pin left alone or grounded. On DDR4 modules, 7 pin SPD is not always used. According to the standard. On older DDR 1,2,3 modules, this contact can be used: _ttps://groups.google.com/forum/#!topic/thaiphoon-burner/cXCjJP4w_ko If you consider your device as universal, then the 7th pin on the SPD chip will never be on the EVENT_N 78 DIMM pin.
post edited by Propretor - Thursday, June 25, 2020 12:56 AM
Attached Image(s)
|
Propretor
New Member
- Total Posts : 17
- Reward points : 0
- Joined: 6/23/2020
- Status: offline
- Ribbons : 0
Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Thursday, June 25, 2020 12:54 AM
(permalink)
a213m I don't know where you got that information from, but connecting SA1 to VDD would only change device address, which is relevant for read and write operations. Device addresses are ignored when issuing RSWP commands. Just because bit 2 of CWP command is set to 1, doesn't mean SA1 has to be physically wired to VDDSPD. None of EEPROMS I've encountered with require SA1 or SA2 to be configured in specific way for write protection operations. Only SA0 has to be connected to high voltage source.
Perhaps I do not understand the document correctly. _ttp://www.softnology.biz/tips_pswprotection.html Here is the document I referenced earlier: _ttp://propretor.narod.ru/Arduino/4_01_04R21.pdf
post edited by Propretor - Thursday, June 25, 2020 1:29 PM
|
a213m
SSC Member
- Total Posts : 886
- Reward points : 0
- Joined: 2/8/2006
- Location: 🇨🇦
- Status: offline
- Ribbons : 20

Re: Would anyone be interested in open source and free DDR4 SPD reader/writer?
Thursday, June 25, 2020 8:58 PM
(permalink)
Propretor 1. The program starts for a very long time from 10 to 40 seconds on my computer:

This happens when you have an Arduino with incorrect or no firmware uploaded. I was able to reproduce the same behavior by connecting a "blank" Arduino board and starting the program. Does your Arduino board respond to commands "t" and "s 11 99" using serial monitor? Show me the output. Do you have Arduino Serial Monitor open when launching the GUI program? If so, close it. Make sure you don't have any extra Arduinos or any other serial devices connected. Do you have a DIMM present? The GUI will not show any devices present unless at least one DIMM is present, even if you have the board with the correct firmware connected. Also try the console program. Does the console app show anything with switches /find and /scan ? Propretor .. In my opinion, if we close the jumper, then we will have a 3.3V version:
No. According to schematic, closed jumper is for 5V/16mhz boards, open is for 3.3V/8mhz boards. http://cdn.sparkfun.com/datasheets/Dev/Arduino/Boards/Pro_Micro_v13b.pdf If the jumper is open on your board, then you'll have a 3.3V output on the VCC pin.
post edited by a213m - Friday, June 26, 2020 3:03 AM
My free and open source SDR-DDR5 SPD reader/writer with write protection capabilities New: 13900K, Z790 HERO, 2x32GB 6800C32, 4090, 2TB SN850, AX1600iOld: 10980XE, X299SE2, 8x8GB 4000C15, 4090, 2TB SN850, AX1600i
|