From: Sebastien Bourdeauducq Date: Sat, 16 Nov 2013 15:27:34 +0000 (+0100) Subject: bios: flushl2 command X-Git-Tag: 24jan2021_ls180~2800 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9e99dfca916be5ba33329af5bcb8ad74a39e3b7;p=litex.git bios: flushl2 command --- diff --git a/software/bios/main.c b/software/bios/main.c index 97a0f82d..091b2d91 100644 --- a/software/bios/main.c +++ b/software/bios/main.c @@ -347,6 +347,7 @@ static void do_command(char *c) else if(strcmp(token, "mw") == 0) mw(get_token(&c), get_token(&c), get_token(&c)); else if(strcmp(token, "mc") == 0) mc(get_token(&c), get_token(&c), get_token(&c)); else if(strcmp(token, "crc") == 0) crc(get_token(&c), get_token(&c)); + else if(strcmp(token, "flushl2") == 0) flush_l2_cache(); else if(strcmp(token, "flashboot") == 0) flashboot(); else if(strcmp(token, "serialboot") == 0) serialboot();