Rafal Jaworowski | f57d7d3 | 2008-01-15 12:52:31 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 1998 Dan Malek <dmalek@jlc.net> |
| 3 | * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se> |
| 4 | * Copyright (C) 2000, 2001,2002 Wolfgang Denk <wd@denx.de> |
Kumar Gala | 4c2e3da | 2009-07-28 21:49:52 -0500 | [diff] [blame] | 5 | * Copyright Freescale Semiconductor, Inc. 2004, 2006. |
Rafal Jaworowski | f57d7d3 | 2008-01-15 12:52:31 +0100 | [diff] [blame] | 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Rafal Jaworowski | f57d7d3 | 2008-01-15 12:52:31 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <config.h> |
| 11 | #include <ppc_asm.tmpl> |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 12 | #include <ppc_defs.h> |
| 13 | |
| 14 | #include <asm/cache.h> |
Rafal Jaworowski | f57d7d3 | 2008-01-15 12:52:31 +0100 | [diff] [blame] | 15 | |
| 16 | /*------------------------------------------------------------------------------- */ |
| 17 | /* Function: ppcDcbf */ |
| 18 | /* Description: Data Cache block flush */ |
| 19 | /* Input: r3 = effective address */ |
| 20 | /* Output: none. */ |
| 21 | /*------------------------------------------------------------------------------- */ |
| 22 | .globl ppcDcbf |
| 23 | ppcDcbf: |
| 24 | dcbf r0,r3 |
| 25 | blr |
| 26 | |
| 27 | /*------------------------------------------------------------------------------- */ |
| 28 | /* Function: ppcDcbi */ |
| 29 | /* Description: Data Cache block Invalidate */ |
| 30 | /* Input: r3 = effective address */ |
| 31 | /* Output: none. */ |
| 32 | /*------------------------------------------------------------------------------- */ |
| 33 | .globl ppcDcbi |
| 34 | ppcDcbi: |
| 35 | dcbi r0,r3 |
| 36 | blr |
| 37 | |
| 38 | /*-------------------------------------------------------------------------- |
| 39 | * Function: ppcDcbz |
| 40 | * Description: Data Cache block zero. |
| 41 | * Input: r3 = effective address |
| 42 | * Output: none. |
| 43 | *-------------------------------------------------------------------------- */ |
| 44 | |
| 45 | .globl ppcDcbz |
| 46 | ppcDcbz: |
| 47 | dcbz r0,r3 |
| 48 | blr |
| 49 | |
| 50 | /*------------------------------------------------------------------------------- */ |
| 51 | /* Function: ppcSync */ |
| 52 | /* Description: Processor Synchronize */ |
| 53 | /* Input: none. */ |
| 54 | /* Output: none. */ |
| 55 | /*------------------------------------------------------------------------------- */ |
| 56 | .globl ppcSync |
| 57 | ppcSync: |
| 58 | sync |
| 59 | blr |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 60 | |
| 61 | /* |
| 62 | * Write any modified data cache blocks out to memory and invalidate them. |
| 63 | * Does not invalidate the corresponding instruction cache blocks. |
| 64 | * |
| 65 | * flush_dcache_range(unsigned long start, unsigned long stop) |
| 66 | */ |
| 67 | _GLOBAL(flush_dcache_range) |
Tony O'Brien | 7686660 | 2017-01-06 17:29:45 +1300 | [diff] [blame] | 68 | #if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 69 | li r5,L1_CACHE_BYTES-1 |
| 70 | andc r3,r3,r5 |
| 71 | subf r4,r3,r4 |
| 72 | add r4,r4,r5 |
| 73 | srwi. r4,r4,L1_CACHE_SHIFT |
| 74 | beqlr |
| 75 | mtctr r4 |
| 76 | |
| 77 | 1: dcbf 0,r3 |
| 78 | addi r3,r3,L1_CACHE_BYTES |
| 79 | bdnz 1b |
| 80 | sync /* wait for dcbst's to get to ram */ |
York Sun | cb1629f | 2016-04-07 09:56:48 -0700 | [diff] [blame] | 81 | #endif |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 82 | blr |
| 83 | |
| 84 | /* |
| 85 | * Like above, but invalidate the D-cache. This is used by the 8xx |
| 86 | * to invalidate the cache so the PPC core doesn't get stale data |
| 87 | * from the CPM (no cache snooping here :-). |
| 88 | * |
| 89 | * invalidate_dcache_range(unsigned long start, unsigned long stop) |
| 90 | */ |
| 91 | _GLOBAL(invalidate_dcache_range) |
Tony O'Brien | 7686660 | 2017-01-06 17:29:45 +1300 | [diff] [blame] | 92 | #if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 93 | li r5,L1_CACHE_BYTES-1 |
| 94 | andc r3,r3,r5 |
| 95 | subf r4,r3,r4 |
| 96 | add r4,r4,r5 |
| 97 | srwi. r4,r4,L1_CACHE_SHIFT |
| 98 | beqlr |
| 99 | mtctr r4 |
| 100 | |
| 101 | sync |
| 102 | 1: dcbi 0,r3 |
| 103 | addi r3,r3,L1_CACHE_BYTES |
| 104 | bdnz 1b |
| 105 | sync /* wait for dcbi's to get to ram */ |
York Sun | cb1629f | 2016-04-07 09:56:48 -0700 | [diff] [blame] | 106 | #endif |
Valentin Longchamp | ac33716 | 2015-03-27 16:07:32 +0100 | [diff] [blame] | 107 | blr |
| 108 | |