From: Rick Chen Date: Wed, 28 Aug 2019 10:46:07 +0000 (+0800) Subject: riscv: ae350: use the v5l2 driver to configure the cache X-Git-Tag: v2019.10-rc4~25^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=edf0acb3b462732cc236f2a8d00abb82abebf38d;p=oweals%2Fu-boot.git riscv: ae350: use the v5l2 driver to configure the cache Find the UCLASS_CACHE driver to configure the cache controller's settings. Signed-off-by: Rick Chen Cc: KC Lin Reviewed-by: Bin Meng --- diff --git a/board/AndesTech/ax25-ae350/ax25-ae350.c b/board/AndesTech/ax25-ae350/ax25-ae350.c index 3d65ce7b75..b43eebb7a6 100644 --- a/board/AndesTech/ax25-ae350/ax25-ae350.c +++ b/board/AndesTech/ax25-ae350/ax25-ae350.c @@ -11,6 +11,7 @@ #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; @@ -93,10 +94,18 @@ int smc_init(void) return 0; } +static void v5l2_init(void) +{ + struct udevice *dev; + + uclass_get_device(UCLASS_CACHE, 0, &dev); +} + #ifdef CONFIG_BOARD_EARLY_INIT_F int board_early_init_f(void) { smc_init(); + v5l2_init(); return 0; }