2002-11-03 00:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 Murray Jensen <Murray.Jensen@cmst.csiro.au>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:38:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <command.h>
|
2010-09-09 17:18:00 +00:00
|
|
|
#include <asm/ppc4xx.h>
|
2002-11-03 00:38:21 +00:00
|
|
|
|
|
|
|
#define CONFIG_405GP 1 /* needed for Linux kernel header files */
|
|
|
|
|
|
|
|
#include <ppc_asm.tmpl>
|
|
|
|
#include <ppc_defs.h>
|
|
|
|
|
|
|
|
#include <asm/cache.h>
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
|
2007-07-09 23:57:22 +00:00
|
|
|
#if defined(CONFIG_CMD_KGDB)
|
2002-11-03 00:38:21 +00:00
|
|
|
/*
|
|
|
|
* cache flushing routines for kgdb
|
|
|
|
*/
|
|
|
|
|
|
|
|
.globl kgdb_flush_cache_all
|
|
|
|
kgdb_flush_cache_all:
|
|
|
|
/* icache */
|
|
|
|
iccci r0,r0 /* iccci invalidates the entire I cache */
|
|
|
|
/* dcache */
|
|
|
|
addi r6,0,0x0000 /* clear GPR 6 */
|
2008-05-20 14:00:29 +00:00
|
|
|
addi r7,r0, 128 /* do loop for # of dcache lines */
|
2002-11-03 00:38:21 +00:00
|
|
|
/* NOTE: dccci invalidates both */
|
2003-06-27 21:31:46 +00:00
|
|
|
mtctr r7 /* ways in the D cache */
|
2002-11-03 00:38:21 +00:00
|
|
|
..dcloop:
|
2003-06-27 21:31:46 +00:00
|
|
|
dccci 0,r6 /* invalidate line */
|
|
|
|
addi r6,r6, 32 /* bump to next line */
|
|
|
|
bdnz ..dcloop
|
2002-11-03 00:38:21 +00:00
|
|
|
blr
|
|
|
|
|
|
|
|
.globl kgdb_flush_cache_range
|
|
|
|
kgdb_flush_cache_range:
|
2007-10-31 16:55:58 +00:00
|
|
|
li r5,L1_CACHE_BYTES-1
|
2002-11-03 00:38:21 +00:00
|
|
|
andc r3,r3,r5
|
|
|
|
subf r4,r3,r4
|
|
|
|
add r4,r4,r5
|
2007-10-31 16:55:58 +00:00
|
|
|
srwi. r4,r4,L1_CACHE_SHIFT
|
2002-11-03 00:38:21 +00:00
|
|
|
beqlr
|
|
|
|
mtctr r4
|
|
|
|
mr r6,r3
|
|
|
|
1: dcbst 0,r3
|
2007-10-31 16:55:58 +00:00
|
|
|
addi r3,r3,L1_CACHE_BYTES
|
2002-11-03 00:38:21 +00:00
|
|
|
bdnz 1b
|
|
|
|
sync /* wait for dcbst's to get to ram */
|
|
|
|
mtctr r4
|
|
|
|
2: icbi 0,r6
|
2007-10-31 16:55:58 +00:00
|
|
|
addi r6,r6,L1_CACHE_BYTES
|
2002-11-03 00:38:21 +00:00
|
|
|
bdnz 2b
|
|
|
|
SYNC
|
|
|
|
blr
|
|
|
|
|
2007-07-10 15:27:39 +00:00
|
|
|
#endif
|