blob: ea27d59a6cef3a399edca30361b12cd6f86fb6a3 [file] [log] [blame]
wdenkefee1702002-07-20 20:14:13 +00001/*
2 * Copyright (C) 2000 Murray Jensen <Murray.Jensen@cmst.csiro.au>
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
wdenkefee1702002-07-20 20:14:13 +00005 */
6
7#include <config.h>
8#include <command.h>
9#include <mpc8xx.h>
10#include <version.h>
11
12#define CONFIG_8xx 1 /* needed for Linux kernel header files */
13#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
14
15#include <ppc_asm.tmpl>
16#include <ppc_defs.h>
17
18#include <asm/cache.h>
19#include <asm/mmu.h>
20
Jon Loeliger526e5ce2007-07-09 19:06:00 -050021#if defined(CONFIG_CMD_KGDB)
wdenkefee1702002-07-20 20:14:13 +000022
23 /*
24 * cache flushing routines for kgdb
25 */
26
27 .globl kgdb_flush_cache_all
28kgdb_flush_cache_all:
29 lis r3, IDC_INVALL@h
30 mtspr DC_CST, r3
31 sync
32 lis r3, IDC_INVALL@h
33 mtspr IC_CST, r3
34 SYNC
35 blr
36
37 .globl kgdb_flush_cache_range
38kgdb_flush_cache_range:
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020039 li r5,CONFIG_SYS_CACHELINE_SIZE-1
wdenkefee1702002-07-20 20:14:13 +000040 andc r3,r3,r5
41 subf r4,r3,r4
42 add r4,r4,r5
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020043 srwi. r4,r4,CONFIG_SYS_CACHELINE_SHIFT
wdenkefee1702002-07-20 20:14:13 +000044 beqlr
45 mtctr r4
46 mr r6,r3
471: dcbst 0,r3
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020048 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
wdenkefee1702002-07-20 20:14:13 +000049 bdnz 1b
50 sync /* wait for dcbst's to get to ram */
51 mtctr r4
522: icbi 0,r6
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020053 addi r6,r6,CONFIG_SYS_CACHELINE_SIZE
wdenkefee1702002-07-20 20:14:13 +000054 bdnz 2b
55 SYNC
56 blr
57
Jon Loeliger07efe2a2007-07-10 10:27:39 -050058#endif