![]() |
RTEMS 5.2
|
Mount options for the Journalling Flash File System, Version 2 (JFFS2). More...
Data Structures | |
struct | rtems_jffs2_flash_control |
JFFS2 flash device control. More... | |
struct | rtems_jffs2_compressor_control |
JFFS2 compressor control. More... | |
struct | rtems_jffs2_compressor_zlib_control |
ZLIB compressor control structure. More... | |
struct | rtems_jffs2_mount_data |
JFFS2 mount options. More... | |
struct | rtems_jffs2_info |
JFFS2 filesystem instance information. More... | |
Macros | |
#define | RTEMS_JFFS2_GET_INFO _IOR('F', 1, rtems_jffs2_info) |
IO control to get the JFFS2 filesystem instance information. More... | |
#define | RTEMS_JFFS2_ON_DEMAND_GARBAGE_COLLECTION _IO('F', 2) |
IO control to perform an on demand garbage collection in a JFFS2 filesystem instance. More... | |
#define | RTEMS_JFFS2_FORCE_GARBAGE_COLLECTION _IO('F', 3) |
IO control to force a garbage collection in a JFFS2 filesystem instance. More... | |
Typedefs | |
typedef int(* | rtems_jffs2_flash_read) (rtems_jffs2_flash_control *self, uint32_t offset, unsigned char *buffer, size_t size_of_buffer) |
Read from flash operation. More... | |
typedef int(* | rtems_jffs2_flash_write) (rtems_jffs2_flash_control *self, uint32_t offset, const unsigned char *buffer, size_t size_of_buffer) |
Write to flash operation. More... | |
typedef int(* | rtems_jffs2_flash_erase) (rtems_jffs2_flash_control *self, uint32_t offset) |
Flash erase operation. More... | |
typedef void(* | rtems_jffs2_flash_destroy) (rtems_jffs2_flash_control *self) |
Flash destroy operation. More... | |
typedef void(* | rtems_jffs2_trigger_garbage_collection) (rtems_jffs2_flash_control *self) |
Trigger garbage collection operation. More... | |
typedef struct rtems_jffs2_compressor_control | rtems_jffs2_compressor_control |
typedef uint16_t(* | rtems_jffs2_compressor_compress) (rtems_jffs2_compressor_control *self, unsigned char *data_in, unsigned char *cdata_out, uint32_t *datalen, uint32_t *cdatalen) |
Compress operation. More... | |
typedef int(* | rtems_jffs2_compressor_decompress) (rtems_jffs2_compressor_control *self, uint16_t comprtype, unsigned char *cdata_in, unsigned char *data_out, uint32_t cdatalen, uint32_t datalen) |
Decompress operation. More... | |
typedef void(* | rtems_jffs2_compressor_destroy) (rtems_jffs2_compressor_control *self) |
Compressor destroy operation. More... | |
Functions | |
uint16_t | rtems_jffs2_compressor_rtime_compress (rtems_jffs2_compressor_control *self, unsigned char *data_in, unsigned char *cdata_out, uint32_t *datalen, uint32_t *cdatalen) |
RTIME compressor compress operation. | |
int | rtems_jffs2_compressor_rtime_decompress (rtems_jffs2_compressor_control *self, uint16_t comprtype, unsigned char *cdata_in, unsigned char *data_out, uint32_t cdatalen, uint32_t datalen) |
RTIME compressor decompress operation. | |
uint16_t | rtems_jffs2_compressor_zlib_compress (rtems_jffs2_compressor_control *self, unsigned char *data_in, unsigned char *cdata_out, uint32_t *datalen, uint32_t *cdatalen) |
ZLIB compressor compress operation. | |
int | rtems_jffs2_compressor_zlib_decompress (rtems_jffs2_compressor_control *self, uint16_t comprtype, unsigned char *cdata_in, unsigned char *data_out, uint32_t cdatalen, uint32_t datalen) |
ZLIB compressor decompress operation. | |
int | rtems_jffs2_initialize (rtems_filesystem_mount_table_entry_t *mt_entry, const void *data) |
Initialization handler of the JFFS2 file system. More... | |
Mount options for the Journalling Flash File System, Version 2 (JFFS2).
The application must provide flash device geometry information and flash device operations in the flash control structure rtems_jffs2_flash_control.
The application can optionally provide a compressor control structure to enable data compression using the selected compression algorithm.
The application must enable JFFS2 support with rtems_filesystem_register() or CONFIGURE_FILESYSTEM_JFFS2 via <rtems/confdefs.h>.
An example mount with a simple memory based flash device simulation follows. The zlib is used for as the compressor.
#define RTEMS_JFFS2_FORCE_GARBAGE_COLLECTION _IO('F', 3) |
IO control to force a garbage collection in a JFFS2 filesystem instance.
Use this operation with care since it may wear out your flash.
#define RTEMS_JFFS2_GET_INFO _IOR('F', 1, rtems_jffs2_info) |
IO control to get the JFFS2 filesystem instance information.
#define RTEMS_JFFS2_ON_DEMAND_GARBAGE_COLLECTION _IO('F', 2) |
IO control to perform an on demand garbage collection in a JFFS2 filesystem instance.
This operation is intended to be used by an optional garbage collection thread. See rtems_jffs2_flash_control::trigger_garbage_collection.
typedef uint16_t(* rtems_jffs2_compressor_compress) (rtems_jffs2_compressor_control *self, unsigned char *data_in, unsigned char *cdata_out, uint32_t *datalen, uint32_t *cdatalen) |
Compress operation.
[in,out] | self | The compressor control. |
[in] | data_in | The uncompressed data. |
[out] | cdata_out | Pointer to buffer with the compressed data. |
[in,out] | datalen | On entry, the size in bytes of the uncompressed data. On exit, the size in bytes of uncompressed data which was actually compressed. |
[in,out] | cdatalen | On entry, the size in bytes available for compressed data. On exit, the size in bytes of the actually compressed data. |
typedef int(* rtems_jffs2_compressor_decompress) (rtems_jffs2_compressor_control *self, uint16_t comprtype, unsigned char *cdata_in, unsigned char *data_out, uint32_t cdatalen, uint32_t datalen) |
Decompress operation.
[in,out] | self | The compressor control. |
[in] | comprtype | The compressor type. |
[in] | cdata_in | The compressed data. |
[out] | data_out | The uncompressed data. |
[in] | cdatalen | The size in bytes of the compressed data. |
[in] | datalen | The size in bytes of the uncompressed data. |
0 | Successful operation. |
-EIO | An error occurred. Please note that the value is negative. |
other | All other values are reserved and must not be used. |
typedef void(* rtems_jffs2_compressor_destroy) (rtems_jffs2_compressor_control *self) |
Compressor destroy operation.
The compressor destroy operation is called during unmount of the file system instance. It can be used to free the resources associated with the now unused compressor operations.
[in,out] | self | The compressor control. |
typedef void(* rtems_jffs2_flash_destroy) (rtems_jffs2_flash_control *self) |
Flash destroy operation.
The flash destroy operation is called during unmount of the file system instance. It can be used to free the resources associated with the now unused flash control
[in,out] | self | The flash control. |
typedef int(* rtems_jffs2_flash_erase) (rtems_jffs2_flash_control *self, uint32_t offset) |
Flash erase operation.
This operation must erase one block specified by the offset.
[in,out] | self | The flash control. |
[in] | offset | The offset to erase from the flash begin in bytes. |
0 | Successful operation. |
-EIO | An error occurred. Please note that the value is negative. |
other | All other values are reserved and must not be used. |
typedef int(* rtems_jffs2_flash_read) (rtems_jffs2_flash_control *self, uint32_t offset, unsigned char *buffer, size_t size_of_buffer) |
Read from flash operation.
[in,out] | self | The flash control. |
[in] | offset | The offset to read from the flash begin in bytes. |
[out] | buffer | The buffer receiving the data. |
[in] | size_of_buffer | The size of the buffer in bytes. |
0 | Successful operation. |
-EIO | An error occurred. Please note that the value is negative. |
other | All other values are reserved and must not be used. |
typedef int(* rtems_jffs2_flash_write) (rtems_jffs2_flash_control *self, uint32_t offset, const unsigned char *buffer, size_t size_of_buffer) |
Write to flash operation.
[in,out] | self | The flash control. |
[in] | offset | The offset to write from the flash begin in bytes. |
[in] | buffer | The buffer containing the data to write. |
[in] | size_of_buffer | The size of the buffer in bytes. |
0 | Successful operation. |
-EIO | An error occurred. Please note that the value is negative. |
other | All other values are reserved and must not be used. |
typedef void(* rtems_jffs2_trigger_garbage_collection) (rtems_jffs2_flash_control *self) |
Trigger garbage collection operation.
An optional garbage collection thread may perform now a garbage collection using the RTEMS_JFFS2_ON_DEMAND_GARBAGE_COLLECTION IO control.
The garbage collection must not run in the executing context.
[in] | self | The flash control. |
int rtems_jffs2_initialize | ( | rtems_filesystem_mount_table_entry_t * | mt_entry, |
const void * | data | ||
) |
Initialization handler of the JFFS2 file system.
[in,out] | mt_entry | The mount table entry. |
[in] | data | The mount options are mandatory for JFFS2 and data must point to a valid rtems_jffs2_mount_data structure used for this file system instance. |
0 | Successful operation. |
-1 | An error occurred. The errno indicates the error. |