1 /* 2 * Declarations of procedures and variables shared between files 3 * in arch/ppc/mm/. 4 * 5 * Derived from arch/ppc/mm/init.c: 6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) 7 * 8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) 9 * and Cort Dougan (PReP) (cort@cs.nmt.edu) 10 * Copyright (C) 1996 Paul Mackerras 11 * 12 * Derived from "arch/i386/mm/init.c" 13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds 14 * 15 * This program is free software; you can redistribute it and/or 16 * modify it under the terms of the GNU General Public License 17 * as published by the Free Software Foundation; either version 18 * 2 of the License, or (at your option) any later version. 19 * 20 */ 21 #include <linux/mm.h> 22 #include <asm/tlbflush.h> 23 #include <asm/mmu.h> 24 25 #ifdef CONFIG_PPC_MMU_NOHASH 26 27 /* 28 * On 40x and 8xx, we directly inline tlbia and tlbivax 29 */ 30 #if defined(CONFIG_40x) || defined(CONFIG_8xx) 31 static inline void _tlbil_all(void) 32 { 33 asm volatile ("sync; tlbia; isync" : : : "memory"); 34 } 35 static inline void _tlbil_pid(unsigned int pid) 36 { 37 asm volatile ("sync; tlbia; isync" : : : "memory"); 38 } 39 #define _tlbil_pid_noind(pid) _tlbil_pid(pid) 40 41 #else /* CONFIG_40x || CONFIG_8xx */ 42 extern void _tlbil_all(void); 43 extern void _tlbil_pid(unsigned int pid); 44 #ifdef CONFIG_PPC_BOOK3E 45 extern void _tlbil_pid_noind(unsigned int pid); 46 #else 47 #define _tlbil_pid_noind(pid) _tlbil_pid(pid) 48 #endif 49 #endif /* !(CONFIG_40x || CONFIG_8xx) */ 50 51 /* 52 * On 8xx, we directly inline tlbie, on others, it's extern 53 */ 54 #ifdef CONFIG_8xx 55 static inline void _tlbil_va(unsigned long address, unsigned int pid, 56 unsigned int tsize, unsigned int ind) 57 { 58 asm volatile ("tlbie %0; sync" : : "r" (address) : "memory"); 59 } 60 #elif defined(CONFIG_PPC_BOOK3E) 61 extern void _tlbil_va(unsigned long address, unsigned int pid, 62 unsigned int tsize, unsigned int ind); 63 #else 64 extern void __tlbil_va(unsigned long address, unsigned int pid); 65 static inline void _tlbil_va(unsigned long address, unsigned int pid, 66 unsigned int tsize, unsigned int ind) 67 { 68 __tlbil_va(address, pid); 69 } 70 #endif /* CONIFG_8xx */ 71 72 /* 73 * As of today, we don't support tlbivax broadcast on any 74 * implementation. When that becomes the case, this will be 75 * an extern. 76 */ 77 #ifdef CONFIG_PPC_BOOK3E 78 extern void _tlbivax_bcast(unsigned long address, unsigned int pid, 79 unsigned int tsize, unsigned int ind); 80 #else 81 static inline void _tlbivax_bcast(unsigned long address, unsigned int pid, 82 unsigned int tsize, unsigned int ind) 83 { 84 BUG(); 85 } 86 #endif 87 88 #else /* CONFIG_PPC_MMU_NOHASH */ 89 90 extern void hash_preload(struct mm_struct *mm, unsigned long ea, 91 unsigned long access, unsigned long trap); 92 93 94 extern void _tlbie(unsigned long address); 95 extern void _tlbia(void); 96 97 #endif /* CONFIG_PPC_MMU_NOHASH */ 98 99 #ifdef CONFIG_PPC32 100 101 struct tlbcam { 102 u32 MAS0; 103 u32 MAS1; 104 u32 MAS2; 105 u32 MAS3; 106 u32 MAS7; 107 }; 108 109 extern void mapin_ram(void); 110 extern int map_page(unsigned long va, phys_addr_t pa, int flags); 111 extern void setbat(int index, unsigned long virt, phys_addr_t phys, 112 unsigned int size, int flags); 113 extern void settlbcam(int index, unsigned long virt, phys_addr_t phys, 114 unsigned int size, int flags, unsigned int pid); 115 extern void invalidate_tlbcam_entry(int index); 116 117 extern int __map_without_bats; 118 extern unsigned long ioremap_base; 119 extern unsigned int rtas_data, rtas_size; 120 121 struct hash_pte; 122 extern struct hash_pte *Hash, *Hash_end; 123 extern unsigned long Hash_size, Hash_mask; 124 125 #endif /* CONFIG_PPC32 */ 126 127 #ifdef CONFIG_PPC64 128 extern int map_kernel_page(unsigned long ea, unsigned long pa, int flags); 129 #endif /* CONFIG_PPC64 */ 130 131 extern unsigned long ioremap_bot; 132 extern unsigned long __max_low_memory; 133 extern phys_addr_t __initial_memory_limit_addr; 134 extern phys_addr_t total_memory; 135 extern phys_addr_t total_lowmem; 136 extern phys_addr_t memstart_addr; 137 extern phys_addr_t lowmem_end_addr; 138 139 /* ...and now those things that may be slightly different between processor 140 * architectures. -- Dan 141 */ 142 #if defined(CONFIG_8xx) 143 #define MMU_init_hw() do { } while(0) 144 #define mmu_mapin_ram() (0UL) 145 146 #elif defined(CONFIG_4xx) 147 extern void MMU_init_hw(void); 148 extern unsigned long mmu_mapin_ram(void); 149 150 #elif defined(CONFIG_FSL_BOOKE) 151 extern void MMU_init_hw(void); 152 extern unsigned long mmu_mapin_ram(void); 153 extern void adjust_total_lowmem(void); 154 155 #elif defined(CONFIG_PPC32) 156 /* anything 32-bit except 4xx or 8xx */ 157 extern void MMU_init_hw(void); 158 extern unsigned long mmu_mapin_ram(void); 159 #endif 160