]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/ppc4xx/kgdb.S
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / arch / powerpc / cpu / ppc4xx / kgdb.S
1 /*
2  *  Copyright (C) 2000  Murray Jensen <Murray.Jensen@cmst.csiro.au>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <config.h>
8 #include <command.h>
9 #include <asm/ppc4xx.h>
10 #include <version.h>
11
12 #define CONFIG_405GP 1          /* needed for Linux kernel header files */
13
14 #include <ppc_asm.tmpl>
15 #include <ppc_defs.h>
16
17 #include <asm/cache.h>
18 #include <asm/mmu.h>
19
20 #if defined(CONFIG_CMD_KGDB)
21  /*
22  * cache flushing routines for kgdb
23  */
24
25         .globl  kgdb_flush_cache_all
26 kgdb_flush_cache_all:
27         /* icache */
28         iccci   r0,r0           /* iccci invalidates the entire I cache */
29         /* dcache */
30         addi    r6,0,0x0000     /* clear GPR 6 */
31         addi    r7,r0, 128      /* do loop for # of dcache lines */
32                                 /* NOTE: dccci invalidates both */
33         mtctr   r7              /* ways in the D cache */
34 ..dcloop:
35         dccci   0,r6            /* invalidate line */
36         addi    r6,r6, 32       /* bump to next line */
37         bdnz    ..dcloop
38         blr
39
40         .globl  kgdb_flush_cache_range
41 kgdb_flush_cache_range:
42         li      r5,L1_CACHE_BYTES-1
43         andc    r3,r3,r5
44         subf    r4,r3,r4
45         add     r4,r4,r5
46         srwi.   r4,r4,L1_CACHE_SHIFT
47         beqlr
48         mtctr   r4
49         mr      r6,r3
50 1:      dcbst   0,r3
51         addi    r3,r3,L1_CACHE_BYTES
52         bdnz    1b
53         sync                    /* wait for dcbst's to get to ram */
54         mtctr   r4
55 2:      icbi    0,r6
56         addi    r6,r6,L1_CACHE_BYTES
57         bdnz    2b
58         SYNC
59         blr
60
61 #endif