Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 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 | */ |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 21 | #include <linux/mm.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 22 | #include <asm/tlbflush.h> |
| 23 | #include <asm/mmu.h> |
| 24 | |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 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 | { |
Benjamin Herrenschmidt | 4a08268 | 2009-01-06 17:56:51 +0000 | [diff] [blame] | 33 | asm volatile ("sync; tlbia; isync" : : : "memory"); |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 34 | } |
| 35 | static inline void _tlbil_pid(unsigned int pid) |
| 36 | { |
Benjamin Herrenschmidt | 4a08268 | 2009-01-06 17:56:51 +0000 | [diff] [blame] | 37 | asm volatile ("sync; tlbia; isync" : : : "memory"); |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 38 | } |
Benjamin Herrenschmidt | d4e167d | 2009-07-23 23:15:24 +0000 | [diff] [blame] | 39 | #define _tlbil_pid_noind(pid) _tlbil_pid(pid) |
| 40 | |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 41 | #else /* CONFIG_40x || CONFIG_8xx */ |
| 42 | extern void _tlbil_all(void); |
| 43 | extern void _tlbil_pid(unsigned int pid); |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 44 | #ifdef CONFIG_PPC_BOOK3E |
| 45 | extern void _tlbil_pid_noind(unsigned int pid); |
| 46 | #else |
Benjamin Herrenschmidt | d4e167d | 2009-07-23 23:15:24 +0000 | [diff] [blame] | 47 | #define _tlbil_pid_noind(pid) _tlbil_pid(pid) |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 48 | #endif |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 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 |
Benjamin Herrenschmidt | d4e167d | 2009-07-23 23:15:24 +0000 | [diff] [blame] | 55 | static inline void _tlbil_va(unsigned long address, unsigned int pid, |
| 56 | unsigned int tsize, unsigned int ind) |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 57 | { |
Benjamin Herrenschmidt | 4a08268 | 2009-01-06 17:56:51 +0000 | [diff] [blame] | 58 | asm volatile ("tlbie %0; sync" : : "r" (address) : "memory"); |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 59 | } |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 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 |
Benjamin Herrenschmidt | d4e167d | 2009-07-23 23:15:24 +0000 | [diff] [blame] | 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 | } |
Paul Bolle | b823982 | 2014-09-26 19:49:12 +0200 | [diff] [blame] | 70 | #endif /* CONFIG_8xx */ |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 71 | |
Dave Kleikamp | e7f75ad | 2010-03-05 10:43:12 +0000 | [diff] [blame] | 72 | #if defined(CONFIG_PPC_BOOK3E) || defined(CONFIG_PPC_47x) |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 73 | extern void _tlbivax_bcast(unsigned long address, unsigned int pid, |
| 74 | unsigned int tsize, unsigned int ind); |
| 75 | #else |
Benjamin Herrenschmidt | d4e167d | 2009-07-23 23:15:24 +0000 | [diff] [blame] | 76 | static inline void _tlbivax_bcast(unsigned long address, unsigned int pid, |
| 77 | unsigned int tsize, unsigned int ind) |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 78 | { |
| 79 | BUG(); |
| 80 | } |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 81 | #endif |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 82 | |
| 83 | #else /* CONFIG_PPC_MMU_NOHASH */ |
| 84 | |
Benjamin Herrenschmidt | ee4f2ea | 2007-04-12 15:30:22 +1000 | [diff] [blame] | 85 | extern void hash_preload(struct mm_struct *mm, unsigned long ea, |
| 86 | unsigned long access, unsigned long trap); |
| 87 | |
| 88 | |
Benjamin Herrenschmidt | 2a4aca11 | 2008-12-18 19:13:42 +0000 | [diff] [blame] | 89 | extern void _tlbie(unsigned long address); |
| 90 | extern void _tlbia(void); |
| 91 | |
| 92 | #endif /* CONFIG_PPC_MMU_NOHASH */ |
| 93 | |
Paul Mackerras | ab1f9da | 2005-10-10 21:58:35 +1000 | [diff] [blame] | 94 | #ifdef CONFIG_PPC32 |
Trent Piepho | 19f5465 | 2008-12-08 19:34:55 -0800 | [diff] [blame] | 95 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 96 | extern void mapin_ram(void); |
| 97 | extern int map_page(unsigned long va, phys_addr_t pa, int flags); |
Becky Bruce | 7c5c432 | 2008-06-14 09:41:42 +1000 | [diff] [blame] | 98 | extern void setbat(int index, unsigned long virt, phys_addr_t phys, |
Michael Ellerman | 5dd4e4f | 2015-03-25 20:11:55 +1100 | [diff] [blame] | 99 | unsigned int size, pgprot_t prot); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 100 | |
| 101 | extern int __map_without_bats; |
Albert Herranz | c5df7f7 | 2009-12-12 06:31:54 +0000 | [diff] [blame] | 102 | extern int __allow_ioremap_reserved; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 103 | extern unsigned int rtas_data, rtas_size; |
| 104 | |
David Gibson | 8e561e7 | 2007-06-13 14:52:56 +1000 | [diff] [blame] | 105 | struct hash_pte; |
| 106 | extern struct hash_pte *Hash, *Hash_end; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 107 | extern unsigned long Hash_size, Hash_mask; |
Benjamin Herrenschmidt | 32a7494 | 2009-07-23 23:15:58 +0000 | [diff] [blame] | 108 | |
| 109 | #endif /* CONFIG_PPC32 */ |
| 110 | |
David Gibson | 800fc3e | 2005-11-16 15:43:48 +1100 | [diff] [blame] | 111 | extern unsigned long ioremap_bot; |
Paul Mackerras | ab1f9da | 2005-10-10 21:58:35 +1000 | [diff] [blame] | 112 | extern unsigned long __max_low_memory; |
Kumar Gala | 09b5e63 | 2008-04-16 05:52:25 +1000 | [diff] [blame] | 113 | extern phys_addr_t __initial_memory_limit_addr; |
Stefan Roese | 2bf3016 | 2008-07-10 01:09:23 +1000 | [diff] [blame] | 114 | extern phys_addr_t total_memory; |
| 115 | extern phys_addr_t total_lowmem; |
Kumar Gala | 99c62dd7 | 2008-04-16 05:52:21 +1000 | [diff] [blame] | 116 | extern phys_addr_t memstart_addr; |
Kumar Gala | d7917ba | 2008-04-16 05:52:22 +1000 | [diff] [blame] | 117 | extern phys_addr_t lowmem_end_addr; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 118 | |
Albert Herranz | de32400 | 2009-12-12 06:31:53 +0000 | [diff] [blame] | 119 | #ifdef CONFIG_WII |
| 120 | extern unsigned long wii_hole_start; |
| 121 | extern unsigned long wii_hole_size; |
| 122 | |
| 123 | extern unsigned long wii_mmu_mapin_mem2(unsigned long top); |
| 124 | extern void wii_memory_fixups(void); |
| 125 | #endif |
| 126 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 127 | /* ...and now those things that may be slightly different between processor |
| 128 | * architectures. -- Dan |
| 129 | */ |
Christophe Leroy | a372acf | 2016-02-09 17:07:50 +0100 | [diff] [blame] | 130 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 131 | extern void MMU_init_hw(void); |
Stephen Rothwell | ae4cec4 | 2009-12-14 09:04:24 -0700 | [diff] [blame] | 132 | extern unsigned long mmu_mapin_ram(unsigned long top); |
Christophe Leroy | a372acf | 2016-02-09 17:07:50 +0100 | [diff] [blame] | 133 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 134 | |
Christophe Leroy | a372acf | 2016-02-09 17:07:50 +0100 | [diff] [blame] | 135 | #ifdef CONFIG_PPC_FSL_BOOK3E |
Scott Wood | eba5de8 | 2015-10-06 22:48:10 -0500 | [diff] [blame] | 136 | extern unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx, |
| 137 | bool dryrun); |
Kumar Gala | 1dc91c3 | 2011-09-16 10:39:59 -0500 | [diff] [blame] | 138 | extern unsigned long calc_cam_sz(unsigned long ram, unsigned long virt, |
| 139 | phys_addr_t phys); |
Kumar Gala | 55fd766 | 2009-10-16 18:48:40 -0500 | [diff] [blame] | 140 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 141 | extern void adjust_total_lowmem(void); |
Kevin Hao | 78a235e | 2013-12-24 15:12:07 +0800 | [diff] [blame] | 142 | extern int switch_to_as1(void); |
Kevin Hao | 0be7d969b | 2013-12-24 15:12:11 +0800 | [diff] [blame] | 143 | extern void restore_to_as0(int esel, int offset, void *dt_ptr, int bootcpu); |
Kumar Gala | 55fd766 | 2009-10-16 18:48:40 -0500 | [diff] [blame] | 144 | #endif |
Kumar Gala | 78f6223 | 2010-05-13 14:38:21 -0500 | [diff] [blame] | 145 | extern void loadcam_entry(unsigned int index); |
Scott Wood | d9e1831 | 2015-10-06 22:48:09 -0500 | [diff] [blame] | 146 | extern void loadcam_multi(int first_idx, int num, int tmp_idx); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 147 | |
Kumar Gala | 78f6223 | 2010-05-13 14:38:21 -0500 | [diff] [blame] | 148 | struct tlbcam { |
| 149 | u32 MAS0; |
| 150 | u32 MAS1; |
| 151 | unsigned long MAS2; |
| 152 | u32 MAS3; |
| 153 | u32 MAS7; |
| 154 | }; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 155 | #endif |
Christophe Leroy | 3084cdb | 2016-02-09 17:07:58 +0100 | [diff] [blame] | 156 | |
Christophe Leroy | 4badd43 | 2016-05-17 09:02:45 +0200 | [diff] [blame] | 157 | #if defined(CONFIG_6xx) || defined(CONFIG_FSL_BOOKE) || defined(CONFIG_PPC_8xx) |
Christophe Leroy | 3084cdb | 2016-02-09 17:07:58 +0100 | [diff] [blame] | 158 | /* 6xx have BATS */ |
| 159 | /* FSL_BOOKE have TLBCAM */ |
Christophe Leroy | 4badd43 | 2016-05-17 09:02:45 +0200 | [diff] [blame] | 160 | /* 8xx have LTLB */ |
Christophe Leroy | 3084cdb | 2016-02-09 17:07:58 +0100 | [diff] [blame] | 161 | phys_addr_t v_block_mapped(unsigned long va); |
| 162 | unsigned long p_block_mapped(phys_addr_t pa); |
| 163 | #else |
| 164 | static inline phys_addr_t v_block_mapped(unsigned long va) { return 0; } |
| 165 | static inline unsigned long p_block_mapped(phys_addr_t pa) { return 0; } |
| 166 | #endif |