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 <mpc8260.h> |
| 10 | #include <version.h> |
| 11 | |
| 12 | #define CONFIG_8260 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 Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 21 | #if defined(CONFIG_CMD_KGDB) |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * cache flushing routines for kgdb |
| 25 | */ |
| 26 | |
| 27 | .globl kgdb_flush_cache_all |
| 28 | kgdb_flush_cache_all: |
| 29 | mfspr r3, HID0 |
| 30 | ori r3, r3, HID0_ICFI|HID0_DCI /* Invalidate All */ |
| 31 | SYNC |
| 32 | mtspr HID0, r3 |
| 33 | blr |
| 34 | |
| 35 | .globl kgdb_flush_cache_range |
| 36 | kgdb_flush_cache_range: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 37 | li r5,CONFIG_SYS_CACHELINE_SIZE-1 |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 38 | andc r3,r3,r5 |
| 39 | subf r4,r3,r4 |
| 40 | add r4,r4,r5 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 41 | srwi. r4,r4,CONFIG_SYS_CACHELINE_SHIFT |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 42 | beqlr |
| 43 | mtctr r4 |
| 44 | mr r6,r3 |
| 45 | 1: dcbst 0,r3 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | addi r3,r3,CONFIG_SYS_CACHELINE_SIZE |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 47 | bdnz 1b |
| 48 | sync /* wait for dcbst's to get to ram */ |
| 49 | mtctr r4 |
| 50 | 2: icbi 0,r6 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | addi r6,r6,CONFIG_SYS_CACHELINE_SIZE |
wdenk | efee170 | 2002-07-20 20:14:13 +0000 | [diff] [blame] | 52 | bdnz 2b |
| 53 | SYNC |
| 54 | blr |
| 55 | |
Jon Loeliger | 068b60a | 2007-07-10 10:27:39 -0500 | [diff] [blame] | 56 | #endif |