Skip to content

SPI flash programmer sketch and client library for Arduino

License

Notifications You must be signed in to change notification settings

s777s/spi-flash-programmer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SPI Flash programmer

This is a very simple Arduino sketch and Python 3 client to program SPI flash chips. It's probably not very nice or tolerant, but it does at least have error correction and fast verification.

The requirements are pySerial and clint. Both modules can be installed with pip:

python3 -m pip install pyserial clint

Usage

  • Program the Arduino with sketch
  • Connect the SPI flash chip as described
  • Run python client on PC to talk to programmer

Connecting a chip

Connect the chip as follows, assuming you have an 3.3V 8-pin SSOP Flash chip. You will need an Arduino running at 3.3V logic. See 3.3V Conversion to convert your Arduino to 3.3V.

Or use one of the following devices running at 3.3V:

Chip pinArduino pin
1 /SS10
2 MISO12
3 /WP+3.3V
4 GNDGND
5 MOSI11
6 SCK13
7 /HOLD+3.3V
8 VDD+3.3V

Commands

# Listing serial ports
> python3 spi_flash_programmer_client.py ports
0: COM15
1: /dev/ttyS1
2: /dev/cu.usbserial
Done

# Read flash
> python3 spi_flash_programmer_client.py \
>   -d COM1 -l 4096 -f dump.bin read
Connected to 'SPI Flash programmer v1.0'
....

# Write flash (sectors are erased automatically)
> python3 spi_flash_programmer_client.py \
>   -d /dev/ttyS1 -l 4096 -f dump.bin write
Connected to 'SPI Flash programmer v1.0'
....

# Verify flash
> python3 spi_flash_programmer_client.py \
>   -d /dev/cu.usbserial -l 4096 -f dump.bin verify
Connected to 'SPI Flash programmer v1.0'
....

# Erase flash
> python3 spi_flash_programmer_client.py \
>   -d COM1 -l 4096 erase
Connected to 'SPI Flash programmer v1.0'
[###########                     ] 383/1024 - 00:01:13

# Help text
> python3 spi_flash_programmer_client.py -h
usage: spi_flash_programmer_client.py [-h] [-d DEVICE] [-f FILENAME]
                                      [-l LENGTH] [--rate BAUD_RATE]
                                      [--flash-offset FLASH_OFFSET]
                                      [--file-offset FILE_OFFSET]
                                      {ports,write,read,verify,erase}

Interface with an Arduino-based SPI flash programmer

positional arguments:
  {ports,write,read,verify,erase}
                        command to execute

optional arguments:
  -h, --help            show this help message and exit
  -d DEVICE             serial port to communicate with
  -f FILENAME           file to read from / write to
  -l LENGTH             length to read/write in kibi bytes (factor 1024)
  --rate BAUD_RATE      baud-rate of serial connection
  --flash-offset FLASH_OFFSET
                        offset for flash read/write in bytes
  --file-offset FILE_OFFSET
                        offset for file read/write in bytes

Troubleshooting

  • Try reducing the serial speed from 115200 to 57600. You'll have to edit the value in both the .ino and the .py.
  • Play with the SPCR setting in the .ino according to the datasheet.

To the extent possible under law, the authors below have waived all copyright and related or neighboring rights to spi-flash-programmer.

  • Leonardo Goncalves
  • Nicholas FitzRoy-Dale, United Kingdom
  • Tobias Faller, Germany

Flashing a 16MB wr703n Flash chip

I used this to write a 16MB flash chip for the wr703n router running OpenWRT. Recent versions of OpenWRT detect the larger Flash and automatically use it, so you don't need to do any patching. U-Boot still thinks the chip is 4MB large, but Linux doesn't seem to care. So all you need to do is copy the image and write the ART (wireless firmware) partition to the right spot, which is right at the end of Flash.

I guess if you do a system upgrade which puts the kernel image somewhere after the first 4MB you might be in trouble, so upgrade u-boot before doing that.

  1. Connect the original chip and dump it:

    python3 spi_flash_programmer_client.py -s 4096 -f wr703n.orig.bin read

  2. Connect the new chip and write it:

    python3 spi_flash_programmer_client.py -s 4096 -f wr703n.orig.bin write

  3. Verify the write.

    python3 spi_flash_programmer_client.py -s 4096 -f wr703n.orig.bin verify

  4. Write the ART partition to the final 64k of the chip (the magic numbers are 16M-64K and 4M-64K respectively).

    python3 spi_flash_programmer_client.py -f wr703n.orig.bin --flash-offset 16711680 --file-offset 4128768 write

  5. Verify the ART partition.

    python3 spi_flash_programmer_client.py -f wr703n.orig.bin --flash-offset 16711680 --file-offset 4128768 verify

  6. Solder the new chip in.

If you try this, let me know!

About

SPI flash programmer sketch and client library for Arduino

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 62.8%
  • C++ 37.2%