summaryrefslogtreecommitdiff
path: root/include/dm
diff options
context:
space:
mode:
authorDinh Nguyen <dinguyen@kernel.org>2019-04-23 16:55:03 -0500
committerTom Rini <trini@konsulko.com>2019-05-05 08:48:50 -0400
commit84b124db3584d8b3f1a42c1506983323bce9983f (patch)
treeb343ae85d7c2600aca0edd911b4b01c6975ac4ad /include/dm
parent2bac27ce945e8399ea2c1404310ead450c065819 (diff)
dm: cache: Create a uclass for cache
The cache UCLASS will be used for configure settings that can be found in a CPU's L2 cache controller. Add a uclass and a test for cache. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Diffstat (limited to 'include/dm')
-rw-r--r--include/dm/uclass-id.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h
index 86e59781b0..09e0ad5391 100644
--- a/include/dm/uclass-id.h
+++ b/include/dm/uclass-id.h
@@ -34,6 +34,7 @@ enum uclass_id {
UCLASS_BLK, /* Block device */
UCLASS_BOARD, /* Device information from hardware */
UCLASS_BOOTCOUNT, /* Bootcount backing store */
+ UCLASS_CACHE, /* Cache controller */
UCLASS_CLK, /* Clock source, e.g. used by peripherals */
UCLASS_CPU, /* CPU, typically part of an SoC */
UCLASS_CROS_EC, /* Chrome OS EC */