2018-05-07 05:58:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-08-27 13:55:31 +08: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-15 03:57:37 +08:00
|
|
|
#include <cpu_func.h>
|
2011-05-24 18:09:05 +08:00
|
|
|
#include <linux/compiler.h>
|
2002-08-27 13:55:31 +08:00
|
|
|
|
2011-05-24 18:09:05 +08:00
|
|
|
static int parse_argv(const char *);
|
|
|
|
|
2011-11-01 02:21:12 +08:00
|
|
|
void __weak invalidate_icache_all(void)
|
2011-05-24 18:09:05 +08:00
|
|
|
{
|
2011-11-01 02:21:12 +08:00
|
|
|
/* please define arch specific invalidate_icache_all */
|
|
|
|
puts("No arch specific invalidate_icache_all available!\n");
|
2011-05-24 18:09:05 +08:00
|
|
|
}
|
2002-08-27 13:55:31 +08:00
|
|
|
|
2014-06-23 06:22:08 +08:00
|
|
|
static int do_icache(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2002-08-27 13:55:31 +08:00
|
|
|
{
|
|
|
|
switch (argc) {
|
2019-07-14 02:54:58 +08:00
|
|
|
case 2: /* on / off / flush */
|
2011-05-24 18:09:05 +08:00
|
|
|
switch (parse_argv(argv[1])) {
|
2012-10-03 18:56:16 +08:00
|
|
|
case 0:
|
|
|
|
icache_disable();
|
2002-08-27 13:55:31 +08:00
|
|
|
break;
|
2012-10-03 18:56:16 +08:00
|
|
|
case 1:
|
|
|
|
icache_enable();
|
2002-08-27 13:55:31 +08:00
|
|
|
break;
|
2012-10-03 18:56:16 +08:00
|
|
|
case 2:
|
|
|
|
invalidate_icache_all();
|
2011-05-24 18:09:05 +08:00
|
|
|
break;
|
2019-07-14 02:54:58 +08:00
|
|
|
default:
|
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 13:55:31 +08:00
|
|
|
}
|
2012-10-03 18:56:17 +08:00
|
|
|
break;
|
2002-08-27 13:55:31 +08:00
|
|
|
case 1: /* get status */
|
2012-10-03 18:56:16 +08:00
|
|
|
printf("Instruction Cache is %s\n",
|
2002-08-27 13:55:31 +08:00
|
|
|
icache_status() ? "ON" : "OFF");
|
|
|
|
return 0;
|
|
|
|
default:
|
2011-12-10 16:44:01 +08:00
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 13:55:31 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-01 02:21:12 +08:00
|
|
|
void __weak flush_dcache_all(void)
|
2011-05-24 18:09:05 +08:00
|
|
|
{
|
2011-11-01 02:21:12 +08:00
|
|
|
puts("No arch specific flush_dcache_all available!\n");
|
|
|
|
/* please define arch specific flush_dcache_all */
|
2011-05-24 18:09:05 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 06:22:08 +08:00
|
|
|
static int do_dcache(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2002-08-27 13:55:31 +08:00
|
|
|
{
|
|
|
|
switch (argc) {
|
2019-07-14 02:54:58 +08:00
|
|
|
case 2: /* on / off / flush */
|
2011-05-24 18:09:05 +08:00
|
|
|
switch (parse_argv(argv[1])) {
|
2012-10-03 18:56:16 +08:00
|
|
|
case 0:
|
|
|
|
dcache_disable();
|
2002-08-27 13:55:31 +08:00
|
|
|
break;
|
2012-10-03 18:56:16 +08:00
|
|
|
case 1:
|
|
|
|
dcache_enable();
|
2002-08-27 13:55:31 +08:00
|
|
|
break;
|
2012-10-03 18:56:16 +08:00
|
|
|
case 2:
|
|
|
|
flush_dcache_all();
|
2011-05-24 18:09:05 +08:00
|
|
|
break;
|
2019-07-14 02:54:58 +08:00
|
|
|
default:
|
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 13:55:31 +08:00
|
|
|
}
|
2012-10-03 18:56:16 +08:00
|
|
|
break;
|
2002-08-27 13:55:31 +08:00
|
|
|
case 1: /* get status */
|
2012-10-03 18:56:16 +08:00
|
|
|
printf("Data (writethrough) Cache is %s\n",
|
2002-08-27 13:55:31 +08:00
|
|
|
dcache_status() ? "ON" : "OFF");
|
|
|
|
return 0;
|
|
|
|
default:
|
2011-12-10 16:44:01 +08:00
|
|
|
return CMD_RET_USAGE;
|
2002-08-27 13:55:31 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-24 18:09:05 +08:00
|
|
|
static int parse_argv(const char *s)
|
2002-08-27 13:55:31 +08:00
|
|
|
{
|
2012-10-03 18:56:16 +08: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 13:55:31 +08:00
|
|
|
}
|
|
|
|
|
2003-06-28 05:31:46 +08:00
|
|
|
|
2003-07-02 05:06:45 +08:00
|
|
|
U_BOOT_CMD(
|
|
|
|
icache, 2, 1, do_icache,
|
2009-01-28 08:03:12 +08:00
|
|
|
"enable or disable instruction cache",
|
2011-05-24 18:09:05 +08:00
|
|
|
"[on, off, flush]\n"
|
|
|
|
" - enable, disable, or flush instruction cache"
|
2003-06-28 05:31:46 +08:00
|
|
|
);
|
|
|
|
|
2003-07-02 05:06:45 +08:00
|
|
|
U_BOOT_CMD(
|
|
|
|
dcache, 2, 1, do_dcache,
|
2009-01-28 08:03:12 +08:00
|
|
|
"enable or disable data cache",
|
2011-05-24 18:09:05 +08:00
|
|
|
"[on, off, flush]\n"
|
|
|
|
" - enable, disable, or flush data (writethrough) cache"
|
2003-06-28 05:31:46 +08:00
|
|
|
);
|