Updated PCI IDs to latest snapshot.
[tangerine.git] / arch / common / boot / grub2 / kern / powerpc / cache.S
blobda982afa0c76dcdf7e1e03199d4274485e45ccff
1 /* cache.S - Flush the processor cache for a specific region.  */
2 /*
3  *  GRUB  --  GRand Unified Bootloader
4  *  Copyright (C) 2004,2007  Free Software Foundation, Inc.
5  *
6  *  GRUB is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  GRUB is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
18  */
20 #define CACHE_LINE_BYTES 32
22         .text
24         .align 2
25         .globl grub_arch_sync_caches
26 grub_arch_sync_caches:
27         /* `address' may not be CACHE_LINE_BYTES-aligned.  */
28         andi. 6, 3, CACHE_LINE_BYTES - 1 /* Find the misalignment.  */
29         add 4, 4, 6 /* Adjust `size' to compensate.  */
31         /* Force the dcache lines to memory.  */
32         li 5, 0
33 1:      dcbst 5, 3
34         addi 5, 5, CACHE_LINE_BYTES
35         cmpw 5, 4
36         blt 1b
37         sync            /* Force all dcbsts to complete.  */
39         /* Invalidate the icache lines.  */
40         li 5, 0
41 1:      icbi 5, 3
42         addi 5, 5, CACHE_LINE_BYTES
43         cmpw 5, 4
44         blt 1b
45         sync            /* Force all icbis to complete.  */
46         isync           /* Discard partially executed instructions that were
47                            loaded from the invalid icache.  */
48         blr