3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * Cache support: switch on or off, get status
30 static int on_off (const char *);
32 int do_icache ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
35 case 2: /* on / off */
36 switch (on_off(argv[1])) {
37 case 0: icache_disable();
39 case 1: icache_enable ();
43 case 1: /* get status */
44 printf ("Instruction Cache is %s\n",
45 icache_status() ? "ON" : "OFF");
48 return cmd_usage(cmdtp);
53 int do_dcache ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
56 case 2: /* on / off */
57 switch (on_off(argv[1])) {
58 case 0: dcache_disable();
60 case 1: dcache_enable ();
64 case 1: /* get status */
65 printf ("Data (writethrough) Cache is %s\n",
66 dcache_status() ? "ON" : "OFF");
69 return cmd_usage(cmdtp);
75 static int on_off (const char *s)
77 if (strcmp(s, "on") == 0) {
79 } else if (strcmp(s, "off") == 0) {
87 icache, 2, 1, do_icache,
88 "enable or disable instruction cache",
90 " - enable or disable instruction cache"
94 dcache, 2, 1, do_dcache,
95 "enable or disable data cache",
97 " - enable or disable data (writethrough) cache"