Re: [U-Boot] [RFC PATCHv1 1/3] misc: pl310: add a misc driver for the pl310 cache controller

2019-03-05 Thread Marek Vasut
On 3/5/19 9:07 PM, Dinh Nguyen wrote: > > > On 3/5/19 1:19 PM, Marek Vasut wrote: >> On 3/5/19 8:03 PM, Dinh Nguyen wrote: >>> The driver will read the cache properties from the device tree file and >>> set it up. >>> > >>> >>> +config L2X0_CACHE >>> + bool "L2x0 Cache support" >>> +

Re: [U-Boot] [RFC PATCHv1 1/3] misc: pl310: add a misc driver for the pl310 cache controller

2019-03-05 Thread Dinh Nguyen
On 3/5/19 1:19 PM, Marek Vasut wrote: > On 3/5/19 8:03 PM, Dinh Nguyen wrote: >> The driver will read the cache properties from the device tree file and >> set it up. >> >> >> +config L2X0_CACHE >> +bool "L2x0 Cache support" >> +depends on MISC >> +help >> + Select this to

Re: [U-Boot] [RFC PATCHv1 1/3] misc: pl310: add a misc driver for the pl310 cache controller

2019-03-05 Thread Marek Vasut
On 3/5/19 8:03 PM, Dinh Nguyen wrote: > The driver will read the cache properties from the device tree file and > set it up. > > Signed-off-by: Dinh Nguyen > --- > arch/arm/include/asm/pl310.h | 3 ++ > drivers/misc/Kconfig | 7 +++ > drivers/misc/Makefile| 1 + >

[U-Boot] [RFC PATCHv1 1/3] misc: pl310: add a misc driver for the pl310 cache controller

2019-03-05 Thread Dinh Nguyen
The driver will read the cache properties from the device tree file and set it up. Signed-off-by: Dinh Nguyen --- arch/arm/include/asm/pl310.h | 3 ++ drivers/misc/Kconfig | 7 +++ drivers/misc/Makefile| 1 + drivers/misc/cache-l2x0.c| 84