Maximize data integrity & reliability with RAID 1

While the term R-A-I-D comes from Redundant Array of Independent (or Inexpensive) Disks, the word “recoverable” better describes the process.

mirror device

Key features

  • Provides protection from storage device defects / failures
  • Works on the storage layer with both FAT and EFS file systems
  • Can be used with any storage device supported by emFile (such as NAND, NOR, and SD cards)
  • Can use different storage types for partitions
  • Can locate all partitions on the same storage device

RAID 1 – Theory of operation

RAID1 uses mirroring to enable data recovery. A copy of all data on the master partition is kept on a separate partition called the mirror. The master and the mirror may be on the same storage device or on separate devices. In the case of a hardware defect or failure on the master partition, data can be recovered from the mirror partition.

On a file system write request, the sector data is written to both master and mirror. On a file system read request, the RAID1 add-on reads the sector data from the master partition. In the event of a read error, the sector data is taken from the mirror partition. The data is recovered and no error is reported to the file system.

RAID1 can be configured to store the data on either the same storage devices or on two separate devices. If a single storage device is used, the first half is used as master partition. When using two different storage devices, the size of the volumes do not have to match. The number of sectors available to the file system will be that of the smallest storage device. It is, however, required that the sector size of both storage devices be equal.

NAND flash error recovery

The Universal NAND driver can make use of the RAID 1 add-on to avoid a data loss when an uncorrectable bit error occurs during a read operation. In case of an uncorrectable bit error the Universal NAND driver requests the RAID 1 add-on to provide corrected sector data from the mirror partition. This procedure applies to read requests coming from the file system as well as for read operations performed internally by the Universal NAND driver when the data of a NAND block is copied to another location.

Sector data synchronization

An unexpected reset which interrupts a write operation may lead to a data inconsistency. It is possible that the data of the last written sector is stored only to the master, but not to the mirror partition. After restart, the file system will continue to operate correctly but in case of a read error affecting exactly this sector, old data is read from the mirror partition which may cause a data corruption. This situation can be prevented by synchronizing all the sectors on the RAID volume. The application can perform the synchronization by calling the FS_STORAGE_SyncSectors() API function. For example, a low priority task can call the function in parallel to other file system activities.

Sample configuration

The following code snippet shows how to configure a the RAID add-on to use two NAND storage devices as master and mirror partition respectively.

raid 1