Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

SPIFReducedBlockDevice Class Reference

SPIFReducedBlockDevice Class Reference

Reduced BlockDevice for SPI based flash devices *Should only be used by Boot Loader*. More...

#include <SPIFReducedBlockDevice.h>

Inherits mbed::BlockDevice.

Public Member Functions

 SPIFReducedBlockDevice (PinName mosi, PinName miso, PinName sclk, PinName csel, int freq=40000000)
 Creates a SPIFReducedBlockDevice on a SPI bus specified by pins.
virtual int init ()
 Initialize a block device.
virtual int deinit ()
 Deinitialize a block device.
virtual int read (void *buffer, mbed::bd_addr_t addr, mbed::bd_size_t size)
 Read blocks from a block device.
virtual int program (const void *buffer, mbed::bd_addr_t addr, mbed::bd_size_t size)
 Program blocks to a block device.
virtual int erase (mbed::bd_addr_t addr, mbed::bd_size_t size)
 Erase blocks on a block device.
virtual mbed::bd_size_t get_read_size () const
 Get the size of a readable block.
virtual mbed::bd_size_t get_program_size () const
 Get the size of a programable block.
virtual mbed::bd_size_t get_erase_size () const
 Get the size of a eraseable block.
virtual mbed::bd_size_t get_erase_size (mbed::bd_addr_t addr) const
 Get the size of a eraseable block.
virtual int get_erase_value () const
 Get the value of storage byte after it was erased.
virtual mbed::bd_size_t size () const
 Get the total size of the underlying device.
virtual const char * get_type () const
 Get the BlockDevice class type.
virtual int sync ()
 Ensure data on storage is in sync with the driver.
virtual int trim (bd_addr_t addr, bd_size_t size)
 Mark blocks as no longer in use.
virtual bool is_valid_read (bd_addr_t addr, bd_size_t size) const
 Convenience function for checking block read validity.
virtual bool is_valid_program (bd_addr_t addr, bd_size_t size) const
 Convenience function for checking block program validity.
virtual bool is_valid_erase (bd_addr_t addr, bd_size_t size) const
 Convenience function for checking block erase validity.

Static Public Member Functions

static BlockDeviceget_default_instance ()
 Return the default block device.

Detailed Description

Reduced BlockDevice for SPI based flash devices *Should only be used by Boot Loader*.

  // Here's an example using the SPI flash device on K82F
  #include "mbed.h"
  #include "SPIFReducedBlockDevice.h"

  // Create flash device on SPI bus with PTE5 as chip select
  SPIFReducedBlockDevice rspif(PTE2, PTE4, PTE1, PTE5);

  int main() {
      printf("reduced spif test\n");

      // Initialize the Reduced SPI flash device and print the memory layout
      rspif.init();
      printf("rspif size: %llu\n",         rspif.size());
      printf("rspif read size: %llu\n",    rspif.get_read_size());
      printf("rspif program size: %llu\n", rspif.get_program_size());
      printf("rspif erase size: %llu\n",   rspif.get_erase_size());

      // Write "Hello World!" to the first block
      char *buffer = (char*)malloc(rspif.get_erase_size());
      sprintf(buffer, "Hello World!\n");
      rspif.erase(0, rspif.get_erase_size());
      rspif.program(buffer, 0, rspif.get_erase_size());

      // Read back what was stored
      rspif.read(buffer, 0, rspif.get_erase_size());
      printf("%s", buffer);

      // Deinitialize the device
      rspif.deinit();
  }

Definition at line 59 of file SPIFReducedBlockDevice.h.


Constructor & Destructor Documentation

SPIFReducedBlockDevice ( PinName  mosi,
PinName  miso,
PinName  sclk,
PinName  csel,
int  freq = 40000000 
)

Creates a SPIFReducedBlockDevice on a SPI bus specified by pins.

Parameters:
mosiSPI master out, slave in pin
misoSPI master in, slave out pin
sclkSPI clock pin
cselSPI chip select pin
freqClock speed of the SPI bus (defaults to 40MHz)

Definition at line 52 of file SPIFReducedBlockDevice.cpp.


Member Function Documentation

int deinit (  ) [virtual]

Deinitialize a block device.

Returns:
0 on success or a negative error code on failure

Implements BlockDevice.

Definition at line 134 of file SPIFReducedBlockDevice.cpp.

int erase ( mbed::bd_addr_t  addr,
mbed::bd_size_t  size 
) [virtual]

Erase blocks on a block device.

The state of an erased block is undefined until it has been programmed

Parameters:
addrAddress of block to begin erasing
sizeSize to erase in bytes, must be a multiple of erase block size
Returns:
0 on success, negative error code on failure

Reimplemented from BlockDevice.

Definition at line 292 of file SPIFReducedBlockDevice.cpp.

MBED_WEAK BlockDevice * get_default_instance (  ) [static, inherited]

Return the default block device.

Returns the default block device based on the configuration JSON. Use the components in target.json or application config to change the default block device.

An application can override all target settings by implementing BlockDevice::get_default_instance() - the default definition is weak, and calls get_target_default_instance().

Definition at line 63 of file SystemStorage.cpp.

bd_size_t get_erase_size (  ) const [virtual]

Get the size of a eraseable block.

Returns:
Size of a eraseable block in bytes
Note:
Must be a multiple of the program size

Reimplemented from BlockDevice.

Definition at line 328 of file SPIFReducedBlockDevice.cpp.

bd_size_t get_erase_size ( mbed::bd_addr_t  addr ) const [virtual]

Get the size of a eraseable block.

Parameters:
addrAddress of block to query erase size
Returns:
Size of a eraseable block in bytes
Note:
Must be a multiple of the program size

Reimplemented from BlockDevice.

Definition at line 333 of file SPIFReducedBlockDevice.cpp.

int get_erase_value (  ) const [virtual]

Get the value of storage byte after it was erased.

If get_erase_value returns a non-negative byte value, the underlying storage is set to that value when erased, and storage containing that value can be programmed without another erase.

Returns:
The value of storage when erased, or -1 if you can't rely on the value of erased storage

Reimplemented from BlockDevice.

Definition at line 338 of file SPIFReducedBlockDevice.cpp.

bd_size_t get_program_size (  ) const [virtual]

Get the size of a programable block.

Returns:
Size of a programable block in bytes
Note:
Must be a multiple of the read size

Implements BlockDevice.

Definition at line 323 of file SPIFReducedBlockDevice.cpp.

bd_size_t get_read_size (  ) const [virtual]

Get the size of a readable block.

Returns:
Size of a readable block in bytes

Implements BlockDevice.

Definition at line 318 of file SPIFReducedBlockDevice.cpp.

const char * get_type (  ) const [virtual]

Get the BlockDevice class type.

Returns:
A string represent the BlockDevice class type.

Implements BlockDevice.

Definition at line 348 of file SPIFReducedBlockDevice.cpp.

int init (  ) [virtual]

Initialize a block device.

Returns:
0 on success or a negative error code on failure

Implements BlockDevice.

Definition at line 60 of file SPIFReducedBlockDevice.cpp.

virtual bool is_valid_erase ( bd_addr_t  addr,
bd_size_t  size 
) const [virtual, inherited]

Convenience function for checking block erase validity.

Parameters:
addrAddress of block to begin erasing
sizeSize to erase in bytes
Returns:
True if erase is valid for underlying block device

Reimplemented in SlicingBlockDevice.

Definition at line 229 of file BlockDevice.h.

virtual bool is_valid_program ( bd_addr_t  addr,
bd_size_t  size 
) const [virtual, inherited]

Convenience function for checking block program validity.

Parameters:
addrAddress of block to begin writing to
sizeSize to write in bytes
Returns:
True if program is valid for underlying block device

Reimplemented in SlicingBlockDevice.

Definition at line 215 of file BlockDevice.h.

virtual bool is_valid_read ( bd_addr_t  addr,
bd_size_t  size 
) const [virtual, inherited]

Convenience function for checking block read validity.

Parameters:
addrAddress of block to begin reading from
sizeSize to read in bytes
Returns:
True if read is valid for underlying block device

Reimplemented in SlicingBlockDevice.

Definition at line 201 of file BlockDevice.h.

int program ( const void *  buffer,
mbed::bd_addr_t  addr,
mbed::bd_size_t  size 
) [virtual]

Program blocks to a block device.

The blocks must have been erased prior to being programmed

Parameters:
bufferBuffer of data to write to blocks
addrAddress of block to begin writing to
sizeSize to write in bytes, must be a multiple of program block size
Returns:
0 on success, negative error code on failure

Implements BlockDevice.

Definition at line 262 of file SPIFReducedBlockDevice.cpp.

int read ( void *  buffer,
mbed::bd_addr_t  addr,
mbed::bd_size_t  size 
) [virtual]

Read blocks from a block device.

Parameters:
bufferBuffer to write blocks to
addrAddress of block to begin reading from
sizeSize to read in bytes, must be a multiple of read block size
Returns:
0 on success, negative error code on failure

Implements BlockDevice.

Definition at line 253 of file SPIFReducedBlockDevice.cpp.

bd_size_t size (  ) const [virtual]

Get the total size of the underlying device.

Returns:
Size of the underlying device in bytes

Implements BlockDevice.

Definition at line 343 of file SPIFReducedBlockDevice.cpp.

virtual int sync (  ) [virtual, inherited]

Ensure data on storage is in sync with the driver.

Returns:
0 on success or a negative error code on failure

Reimplemented in BufferedBlockDevice, ChainingBlockDevice, ExhaustibleBlockDevice, FlashSimBlockDevice, MBRBlockDevice, ProfilingBlockDevice, and SlicingBlockDevice.

Definition at line 82 of file BlockDevice.h.

virtual int trim ( bd_addr_t  addr,
bd_size_t  size 
) [virtual, inherited]

Mark blocks as no longer in use.

This function provides a hint to the underlying block device that a region of blocks is no longer in use and may be erased without side effects. Erase must still be called before programming, but trimming allows flash-translation-layers to schedule erases when the device is not busy.

Parameters:
addrAddress of block to mark as unused
sizeSize to mark as unused in bytes, must be a multiple of the erase block size
Returns:
0 on success or a negative error code on failure

Reimplemented in SDBlockDevice, and BufferedBlockDevice.

Definition at line 136 of file BlockDevice.h.