diff options
| author | Ramon Fried <ramon.fried@gmail.com> | 2018-07-02 02:57:55 +0300 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2018-07-19 16:31:37 -0400 |
| commit | 7b384eccc785b596f68448b155cbda26df57fb23 (patch) | |
| tree | 77d623c310e8050de65ecc655a46dee7b3f81933 /include/dm | |
| parent | b19886b9469174213877ef37670ce35c55acb456 (diff) | |
| download | u-boot-7b384eccc785b596f68448b155cbda26df57fb23.tar.gz u-boot-7b384eccc785b596f68448b155cbda26df57fb23.tar.xz u-boot-7b384eccc785b596f68448b155cbda26df57fb23.zip | |
dm: SMEM (Shared memory) uclass
This is a uclass for Shared memory manager drivers.
A Shared Memory Manager driver implements an interface for allocating
and accessing items in the memory area shared among all of the
processors.
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include/dm')
| -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 d7f9df3583..a39643ec5e 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -74,6 +74,7 @@ enum uclass_id { UCLASS_RTC, /* Real time clock device */ UCLASS_SCSI, /* SCSI device */ UCLASS_SERIAL, /* Serial UART */ + UCLASS_SMEM, /* Shared memory interface */ UCLASS_SPI, /* SPI bus */ UCLASS_SPMI, /* System Power Management Interface bus */ UCLASS_SPI_FLASH, /* SPI flash */ |
