summaryrefslogtreecommitdiffstats
path: root/test/dm/cache.c
Commit message (Collapse)AuthorAgeFilesLines
* dm: Rename DM test flags to make them more genericSimon Glass2020-08-071-1/+1
| | | | | | | | | | The test flags used by driver model are currently not available to other tests. Rather than creating two sets of flags, make these flags generic by changing the DM_ prefix to UT_ and moving them to the test.h header. This will allow adding other test flags without confusion. Signed-off-by: Simon Glass <sjg@chromium.org>
* dm: cache: Add enable and disable ops for sandbox and testRick Chen2019-09-031-0/+2
| | | | | | | | Add cache enable and disable ops for test coverage. Signed-off-by: Rick Chen <rick@andestech.com> Cc: KC Lin <kclin@andestech.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
* dm: cache: Create a uclass for cacheDinh Nguyen2019-05-051-0/+20
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>