MicroPython drivers for nonvolatile memory
Go to file
Peter Hinch 43421c55e7 README fixes. 2019-12-11 09:35:37 +00:00
.gitignore Initial commit 2019-12-11 06:59:32 +00:00
LICENSE Initial commit 2019-12-11 06:59:32 +00:00
README.md README fixes. 2019-12-11 09:35:37 +00:00
eep_test.py Initial commit. 2019-12-11 09:23:17 +00:00
eeprom.py Initial commit. 2019-12-11 09:23:17 +00:00

README.md

1. A MicroPython EEPROM driver

This enables MicroPython to access Microchip EEPROM devices. Unlike flash memory, EEPROMs may be written on a byte addressable basis. Its endurance is specified as a million writes compared to the 10K typical of most flash memory. In applications such as data logging the latter can be exceeded relatively rapidly.

From one to eight chips may be used to construct a nonvolatile memory module with sizes upto 512KiB. The driver allows the memory either to be mounted in the target filesystem as a disk device or to be addressed as an array of bytes. Where multiple chips are used, all must be the same size.

The work was inspired by this one. This was written some five years ago. The driver in this repo employs some of the subsequent improvements to MicroPython to achieve these advantages:

  1. It supports multiple EEPROM chips to configure a single array.
  2. Writes are up to 1000x faster by using ACK polling and page writes.
  3. Page access improves the speed of multi-byte reads.
  4. It is cross-platform.
  5. The I2C bus can be shared with other chips.
  6. It supports filesystem mounting.
  7. Alternatively it can support byte-level access using Python slice syntax.
  8. RAM allocations are reduced.

2. Connections

Any I2C interface may be used. The table below assumes a Pyboard running I2C(2) as per the test program. To wire up a single EEPROM chip, connect to a Pyboard as below. Pin numbers assume a PDIP package (8 pin plastic dual-in-line).

EEPROM PB
1 A0 Gnd
2 A1 Gnd
3 A2 Gnd
4 Vss Gnd
5 Sda Y10
6 Scl Y9
7 WPA1 Gnd
8 Vcc 3V3

For multiple chips the address lines A0, A1 and A2 of each chip need to be wired to 3V3 in such a way as to give each device a unique address. These must start at zero and be contiguous:

Chip no. A2 A1 A0
0 Gnd Gnd Gnd
1 Gnd Gnd 3V3
2 Gnd 3V3 Gnd
3 Gnd 3V3 3V3
4 3V3 Gnd Gnd
5 3V3 Gnd 3V3
6 3V3 3V3 Gnd
7 3V3 3V3 3V3

Multiple chips should have 3V3, Gnd, SCL and SDA lines wired in parallel.

The I2C interface requires pullups, typically 3.3KΩ to 3.3V although any value up to 10KΩ will suffice. The Pyboard 1.x has these on board. The Pyboard D has them only on I2C(1). Even if boards have pullups, additional externalresistors will do no harm.

If you use a Pyboard D and power the EEPROMs from the 3V3 output you will need to enable the voltage rail by issuing:

machine.Pin.board.EN_3V3.value(1)

Other platforms may vary.

3. Files

  1. eeprom.py Device driver.
  2. eep_test.py Test programs for above.

4. The device driver

The driver supports mounting the EEPROM chips as a filesystem. Initially the device will be unformatted so it is necessary to issue code along these lines to format the device. Code assumes one or more 64KiB devices:

import uos
from machine import I2C
from eeprom import EEPROM, T24C512
eep = EEPROM(I2C(2), T24C512)
uos.VfsFat.mkfs(eep)  # Omit this to mount an existing filesystem
vfs = uos.VfsFat(eep)
uos.mount(vfs,'/eeprom')

The above will reformat a drive with an existing filesystem: to mount an existing filesystem simply omit the commented line.

Note that, at the outset, you need to decide whether to use the array as a mounted filesystem or as a byte array. As a filesystem the limited size is an issue, but a potential use case is for pickling Python objects for example to achieve persistence when issuing pyb.standby(); also for holding a small frequently updated persistent btree database.

The I2C bus must be instantiated using the machine module.

4.1 The EEPROM class

An EEPROM instance represents a logical EEPROM: this may consist of multiple physical devices on a common I2C bus.

4.1.1 Constructor

This scans the I2C bus - if one or more correctly addressed chips are detected an EEPROM array is instantiated. A RuntimeError will be raised if no device is detected or if device address lines are not wired as described in Connections.

Arguments:

  1. i2c Mandatory. An initialised master mode I2C bus.
  2. chip_size=T24C512 The chip size in bits. The module provides constants T24C64, T24C128, T24C256, T24C512 for the supported chip sizes.
  3. verbose=True If True, the constructor issues information on the EEPROM devices it has detected.

4.1.2 Methods providing byte level access

4.1.2.1 __getitem__ and __setitem__

These provides single byte or multi-byte access using slice notation. Example of single byte access:

from machine import I2C
from eeprom import EEPROM, T24C512
eep = EEPROM(I2C(1), T24C512)
eep[2000] = 42
print(eep[2000])  # Return an integer

It is also possible to use slice notation to read or write multiple bytes. If writing, the size of the slice must match the length of the buffer:

from machine import I2C
from eeprom import EEPROM, T24C512
eep = EEPROM(I2C(1), T24C512)
eep[2000:2002] = bytearray((42, 43))
print(eep[2000:2002])  # Returns a bytearray

Three argument slices are not supported: a third arg will be ignored.

4.1.2.2 readwrite

This is a byte-level alternative to slice notation. It has the potential advantage of using a pre-allocated buffer. Arguments:

  1. addr Starting byte address
  2. buf A bytearray or bytes instance containing data to write. In the read case it must be a (mutable) bytearray to hold data read.
  3. read If True, perform a read otherwise write. The size of the buffer determines the quantity of data read or written. A RuntimeError will be thrown if the read or write extends beyond the end of the physical space.

4.1.3 Methods providing the block protocol

For the protocol definition see the pyb documentation

readblocks()
writeblocks()
ioctl()

4.1.4 Other methods

4.1.4.1 The len() operator

The size of the EEPROM array in bytes may be retrieved by issuing len(eep) where eep is the EEPROM instance.

4.1.4.2 scan

Scans the I2C bus and returns the number of EEPROM devices detected.

Other than for debugging there is no need to call scan(): the constructor will throw a RuntimeError if it fails to communicate with and correctly identify the chip.

5. Test program eep_test.py

This assumes a Pyboard 1.x or Pyboard D with EEPROM(s) wired as above. It provides the following.

5.1 test()

This performs a basic test of single and multi-byte access to chip 0. The test reports how many chips can be accessed. Existing array data will be lost.

5.2 full_test()

Tests the entire array. Fills each 128 byte page with random data, reads it back, and checks the outcome. Existing array data will be lost.

5.3 fstest(format=False)

If True is passed, formats the EEPROM array as a FAT filesystem and mounts the device on /eeprom. If no arg is passed it mounts the array and lists the contents. It also prints the outcome of uos.statvfs on the array.

5.4 File copy

A rudimentary cp(source, dest) function is provided as a generic file copy routine for setup and debugging purposes at the REPL. The first argument is the full pathname to the source file. The second may be a full path to the destination file or a directory specifier which must have a trailing '/'. If an OSError is thrown (e.g. by the source file not existing or the EEPROM becoming full) it is up to the caller to handle it. For example (assuming the EEPROM is mounted on /eeprom):

cp('/flash/main.py','/eeprom/')

See upysh in micropython-lib for other filesystem tools for use at the REPL.

6. ESP8266

Currently the ESP8266 does not support concurrent mounting of multiple filesystems. Consequently the onboard flash must be unmounted (with uos.umount()) before the EEPROM can be mounted.