Re: [U-Boot] [PATCH v3 2/8] dm: cache: Add enable and disable ops for sandbox and test

2019-08-22 Thread Rick Chen
Hi Bin

> Hi Rick,
>
> On Wed, Aug 21, 2019 at 4:16 PM Andes  wrote:
> >
> > From: Rick Chen 
> >
> > Add L2 cache enable and disable ops for test coverage.
>
> It's not L2 cache for Sandbox. Please rewrite the commit message.

I will remove L2 and rewrite as "cache for Sandbox" .

Thanks,
Rick

>
> >
> > Signed-off-by: Rick Chen 
> > Cc: KC Lin 
> > ---
> >  drivers/cache/sandbox_cache.c | 13 +
> >  test/dm/cache.c   |  2 ++
> >  2 files changed, 15 insertions(+)
> >
>
> Other than that,
> Reviewed-by: Bin Meng 
>
> Regards,
> Bin
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH v3 2/8] dm: cache: Add enable and disable ops for sandbox and test

2019-08-21 Thread Bin Meng
Hi Rick,

On Wed, Aug 21, 2019 at 4:16 PM Andes  wrote:
>
> From: Rick Chen 
>
> Add L2 cache enable and disable ops for test coverage.

It's not L2 cache for Sandbox. Please rewrite the commit message.

>
> Signed-off-by: Rick Chen 
> Cc: KC Lin 
> ---
>  drivers/cache/sandbox_cache.c | 13 +
>  test/dm/cache.c   |  2 ++
>  2 files changed, 15 insertions(+)
>

Other than that,
Reviewed-by: Bin Meng 

Regards,
Bin
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH v3 2/8] dm: cache: Add enable and disable ops for sandbox and test

2019-08-21 Thread Andes
From: Rick Chen 

Add L2 cache enable and disable ops for test coverage.

Signed-off-by: Rick Chen 
Cc: KC Lin 
---
 drivers/cache/sandbox_cache.c | 13 +
 test/dm/cache.c   |  2 ++
 2 files changed, 15 insertions(+)

diff --git a/drivers/cache/sandbox_cache.c b/drivers/cache/sandbox_cache.c
index 14cc6b0..9050c4c 100644
--- a/drivers/cache/sandbox_cache.c
+++ b/drivers/cache/sandbox_cache.c
@@ -17,8 +17,21 @@ static int sandbox_get_info(struct udevice *dev, struct 
cache_info *info)
return 0;
 }
 
+static int sandbox_enable(struct udevice *dev)
+{
+   return 0;
+}
+
+static int snadbox_disable(struct udevice *dev)
+{
+   return 0;
+}
+
+
 static const struct cache_ops sandbox_cache_ops = {
.get_info   = sandbox_get_info,
+   .enable = sandbox_enable,
+   .disable= snadbox_disable,
 };
 
 static const struct udevice_id sandbox_cache_ids[] = {
diff --git a/test/dm/cache.c b/test/dm/cache.c
index d4144aa..2e244b1 100644
--- a/test/dm/cache.c
+++ b/test/dm/cache.c
@@ -14,6 +14,8 @@ static int dm_test_reset(struct unit_test_state *uts)
 
ut_assertok(uclass_get_device(UCLASS_CACHE, 0, &dev_cache));
ut_assertok(cache_get_info(dev, &info));
+   ut_assertok(cache_enable(dev));
+   ut_assertok(cache_disable(dev));
 
return 0;
 }
-- 
2.7.4

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot