wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2000 Murray Jensen <Murray.Jensen@cmst.csiro.au> |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <config.h> |
| 8 | #include <command.h> |
| 9 | #include <mpc8xx.h> |
| 10 | #include <version.h> |
| 11 | |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 12 | #include <ppc_asm.tmpl> |
| 13 | #include <ppc_defs.h> |
| 14 | |
| 15 | #include <asm/cache.h> |
| 16 | #include <asm/mmu.h> |
| 17 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 18 | #if defined(CONFIG_CMD_KGDB) |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * cache flushing routines for kgdb |
| 22 | */ |
| 23 | |
| 24 | .globl kgdb_flush_cache_all |
| 25 | kgdb_flush_cache_all: |
| 26 | lis r3, IDC_INVALL@h |
| 27 | mtspr DC_CST, r3 |
| 28 | sync |
| 29 | lis r3, IDC_INVALL@h |
| 30 | mtspr IC_CST, r3 |
| 31 | SYNC |
| 32 | blr |
| 33 | |
| 34 | .globl kgdb_flush_cache_range |
| 35 | kgdb_flush_cache_range: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 36 | li r5,CONFIG_SYS_CACHELINE_SIZE-1 |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 37 | andc r3,r3,r5 |
| 38 | subf r4,r3,r4 |
| 39 | add r4,r4,r5 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 40 | srwi. r4,r4,CONFIG_SYS_CACHELINE_SHIFT |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 41 | beqlr |
| 42 | mtctr r4 |
| 43 | mr r6,r3 |
| 44 | 1: dcbst 0,r3 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | addi r3,r3,CONFIG_SYS_CACHELINE_SIZE |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 46 | bdnz 1b |
| 47 | sync /* wait for dcbst's to get to ram */ |
| 48 | mtctr r4 |
| 49 | 2: icbi 0,r6 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | addi r6,r6,CONFIG_SYS_CACHELINE_SIZE |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 51 | bdnz 2b |
| 52 | SYNC |
| 53 | blr |
| 54 | |
Jon Loeliger | 068b60a | 2007-07-10 10:27:39 -0500 | [diff] [blame] | 55 | #endif |