diff options
author | Tien Fong Chee <tien.fong.chee@intel.com> | 2018-07-06 16:28:03 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-28 20:22:33 -0400 |
commit | 620300043c95cc695585748ba6ef79da8b8095eb (patch) | |
tree | 8a6e9d1c3b17379644aa85f3cdb66ab1739af1b1 /include/dm/uclass-id.h | |
parent | fc5ca3ab5422601775148e7f65b28aa205055279 (diff) | |
download | u-boot-620300043c95cc695585748ba6ef79da8b8095eb.tar.gz u-boot-620300043c95cc695585748ba6ef79da8b8095eb.tar.xz u-boot-620300043c95cc695585748ba6ef79da8b8095eb.zip |
common: Generic loader for file system
This is file system generic loader which can be used to load
the file image from the storage into target such as memory.
The consumer driver would then use this loader to program whatever,
ie. the FPGA device.
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Diffstat (limited to 'include/dm/uclass-id.h')
-rw-r--r-- | include/dm/uclass-id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h index 7027ea076d..10d29901e0 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -37,6 +37,7 @@ enum uclass_id { UCLASS_DMA, /* Direct Memory Access */ UCLASS_EFI, /* EFI managed devices */ UCLASS_ETH, /* Ethernet device */ + UCLASS_FS_FIRMWARE_LOADER, /* Generic loader */ UCLASS_GPIO, /* Bank of general-purpose I/O pins */ UCLASS_FIRMWARE, /* Firmware */ UCLASS_I2C, /* I2C bus */ |