2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-08-27 05:55:31 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cache support: switch on or off, get status
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2011-05-24 10:09:05 +00:00
|
|
|
#include <linux/compiler.h>
|
2002-08-27 05:55:31 +00:00
|
|
|
|
2011-05-24 10:09:05 +00:00
|
|
|
static int parse_argv(const char *);
|
|
|
|
|
2011-10-31 18:21:12 +00:00
|
|
|
void __weak invalidate_icache_all(void)
|
2011-05-24 10:09:05 +00:00
|
|
|
{
|
2011-10-31 18:21:12 +00:00
|
|
|
/* please define arch specific invalidate_icache_all */
|
|
|
|
puts("No arch specific invalidate_icache_all available!\n");
|
2011-05-24 10:09:05 +00:00
|
|
|
}
|
2002-08-27 05:55:31 +00:00
|
|
|
|
2020-04-28 09:38:03 +00:00
|
|
|
__weak void noncached_set_region(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_icache(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2002-08-27 05:55:31 +00:00
|
|
|
{
|
|
|
|
switch (argc) {
|
2019-07-13 18:54:58 +00:00
|
|
|
case 2: /* on / off / flush */
|
2011-05-24 10:09:05 +00:00
|
|
|
switch (parse_argv(argv[1])) {
|
2012-10-03 10:56:16 +00:00
|
|
|
case 0:
|
|
|
|
icache_disable();
|
2002-08-27 05:55:31 +00:00
|
|
|
break;
|
2012-10-03 10:56:16 +00:00
|
|
|
case 1:
|
|
|
|
icache_enable();
|
2002-08-27 05:55:31 +00:00
|
|
|
break;
|
2012-10-03 10:56:16 +00:00
|
|
|
case 2:
|
|
|
|
invalidate_icache_all();
|
2011-05-24 10:09:05 +00:00
|
|
|
break;
|
2019-07-13 18:54:58 +00:00
|
|
|
default:
|
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 05:55:31 +00:00
|
|
|
}
|
2012-10-03 10:56:17 +00:00
|
|
|
break;
|
2002-08-27 05:55:31 +00:00
|
|
|
case 1: /* get status */
|
2012-10-03 10:56:16 +00:00
|
|
|
printf("Instruction Cache is %s\n",
|
2002-08-27 05:55:31 +00:00
|
|
|
icache_status() ? "ON" : "OFF");
|
|
|
|
return 0;
|
|
|
|
default:
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 05:55:31 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-31 18:21:12 +00:00
|
|
|
void __weak flush_dcache_all(void)
|
2011-05-24 10:09:05 +00:00
|
|
|
{
|
2011-10-31 18:21:12 +00:00
|
|
|
puts("No arch specific flush_dcache_all available!\n");
|
|
|
|
/* please define arch specific flush_dcache_all */
|
2011-05-24 10:09:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_dcache(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2002-08-27 05:55:31 +00:00
|
|
|
{
|
|
|
|
switch (argc) {
|
2019-07-13 18:54:58 +00:00
|
|
|
case 2: /* on / off / flush */
|
2011-05-24 10:09:05 +00:00
|
|
|
switch (parse_argv(argv[1])) {
|
2012-10-03 10:56:16 +00:00
|
|
|
case 0:
|
|
|
|
dcache_disable();
|
2002-08-27 05:55:31 +00:00
|
|
|
break;
|
2012-10-03 10:56:16 +00:00
|
|
|
case 1:
|
|
|
|
dcache_enable();
|
2020-04-28 09:38:03 +00:00
|
|
|
noncached_set_region();
|
2002-08-27 05:55:31 +00:00
|
|
|
break;
|
2012-10-03 10:56:16 +00:00
|
|
|
case 2:
|
|
|
|
flush_dcache_all();
|
2011-05-24 10:09:05 +00:00
|
|
|
break;
|
2019-07-13 18:54:58 +00:00
|
|
|
default:
|
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 05:55:31 +00:00
|
|
|
}
|
2012-10-03 10:56:16 +00:00
|
|
|
break;
|
2002-08-27 05:55:31 +00:00
|
|
|
case 1: /* get status */
|
2012-10-03 10:56:16 +00:00
|
|
|
printf("Data (writethrough) Cache is %s\n",
|
2002-08-27 05:55:31 +00:00
|
|
|
dcache_status() ? "ON" : "OFF");
|
|
|
|
return 0;
|
|
|
|
default:
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 05:55:31 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-24 10:09:05 +00:00
|
|
|
static int parse_argv(const char *s)
|
2002-08-27 05:55:31 +00:00
|
|
|
{
|
2012-10-03 10:56:16 +00:00
|
|
|
if (strcmp(s, "flush") == 0)
|
|
|
|
return 2;
|
|
|
|
else if (strcmp(s, "on") == 0)
|
|
|
|
return 1;
|
|
|
|
else if (strcmp(s, "off") == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
2002-08-27 05:55:31 +00:00
|
|
|
}
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
icache, 2, 1, do_icache,
|
2009-01-28 00:03:12 +00:00
|
|
|
"enable or disable instruction cache",
|
2011-05-24 10:09:05 +00:00
|
|
|
"[on, off, flush]\n"
|
|
|
|
" - enable, disable, or flush instruction cache"
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
dcache, 2, 1, do_dcache,
|
2009-01-28 00:03:12 +00:00
|
|
|
"enable or disable data cache",
|
2011-05-24 10:09:05 +00:00
|
|
|
"[on, off, flush]\n"
|
|
|
|
" - enable, disable, or flush data (writethrough) cache"
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|