Re: [U-Boot] [PATCH v3 1/8] dm: cache: Add enable and disable ops for cache uclass

2019-08-22 Thread Rick Chen
Hi Bin > Hi Rick, > > On Wed, Aug 21, 2019 at 4:15 PM Andes wrote: > > > > From: Rick Chen > > > > The L2 cache will be enabled in init flow of dm cache > > driver when it detect L2 node in dtb. > > > > When U-Boot jumps to Linux Kernel, the disable ops will > > be called to flush and disable

Re: [U-Boot] [PATCH v3 1/8] dm: cache: Add enable and disable ops for cache uclass

2019-08-22 Thread Bin Meng
Hi Rick, On Wed, Aug 21, 2019 at 4:15 PM Andes wrote: > > From: Rick Chen > > The L2 cache will be enabled in init flow of dm cache > driver when it detect L2 node in dtb. > > When U-Boot jumps to Linux Kernel, the disable ops will > be called to flush and disable the L2 cache via the dm >

[U-Boot] [PATCH v3 1/8] dm: cache: Add enable and disable ops for cache uclass

2019-08-21 Thread Andes
From: Rick Chen The L2 cache will be enabled in init flow of dm cache driver when it detect L2 node in dtb. When U-Boot jumps to Linux Kernel, the disable ops will be called to flush and disable the L2 cache via the dm cache driver. Signed-off-by: Rick Chen Cc: KC Lin ---