So basically, I used my Raspberry Pi 4 to R/W the BIOS chip, I feel like the machine really is just OP, I recommend anyone already having a Pi (possibly even Pi 3) to not buy the CH341 Programmer but instead just buy a SOIC-8 clip (I recommend the blue Pomona 5250) and set up a SPI interface via a RPi.
I have the 64-bit Raspbian Lite installed on my RPi4, with ssh and network setup via Pi Imager. After accessing my Pi via pwsh, I used raspi-config
command to enable the SPI interface, which is disabled by default and rebooted the RPi. After that I proceeded to connecting the clip to the GPIO pinout according to the flashrom documentation (as well as my BIOS chip datasheet), you can access the RPi GPIO pinout referrence as well, just to make sure you are 100% sure what should go where. (By the way, I used a basic breadboard to jump the three pins that need to be connected to the 3.3V rail with one of the 3.3V GPIO pins, but you should be able to jump then in any other way.) For illustration purposes, see the pictures I sent above in the post number 24.
As a side note, I have unplugged the power cable from the PSU as well as taken out the CMOS battery, also all the jumpers were at the default position and finally held the power button for a few seconds to make sure there is no power left inside, or you can just take a peek at the PSU green power LED and you should be good to go if it’s not lit up even without holding the power button.
After attaching the clip, try probing for the chip in question:
flashrom -p linux_spi:dev=/dev/spidev0.0,spispeed=1000 -c "MX25L12833F/MX25L12835F/MX25L12845E/MX25L12865E/MX25L12873F" -V
You might want to reattach the clip unless you get a successful probe consecutively at least 3 or 4 times, or you can try reading right away:
flashrom -p linux_spi:dev=/dev/spidev0.0,spispeed=1000 -c "MX25L12833F/MX25L12835F/MX25L12845E/MX25L12865E/MX25L12873F" -r dump.bin
Beware, the reading time can take up to or even over 10 minutes for a 16MiB chip! Once you start reading, try and have some patience!
Afterwards, make sure you get a correct dump via hexdump
and adjust the clip each time you get an empty dump, i.e. xyz MiB of zeroes or some other gibberish. Once you finally get a valid dump, don’t forget to check the BIOS structure in UEFIToolNE and make at least two more dumps. Make sure they are completely identical to the valid dump with a correct BIOS structure tree recognized by the UEFIToolNE:
sha256sum dump1.bin dump2.bin dump3.bin
You should get the same checksum for all three dumps. And that’s it for reading. In case you don’t understand a command, just use man
or --help
to read more about its usage. As for writing, it’s basically the same thing just with the -w
option. Also, if I remember correctly, the -w
write option automatically reads the contents into RAM for failure recovery purposes, erases and writes the chip as well as verifies the chip contents against the written file afterwards, but you can do any of those actions with option arguments yourself in case you like it more manual. 
The promised corrupted BIN dump of my original BIOS:
ThinkStationP710_30B6S0FK16_corrupted20250330.zip (8.6 MB)
In case you have any questions, don’t hesitate to contact me here, I should get notified via email so as long as I am able to help you, I will try my best. Have a nice day, everyone!