~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/mm/early_ioremap.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /mm/early_ioremap.c (Version linux-6.12-rc7) and /mm/early_ioremap.c (Version linux-2.6.0)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * Provide common bits of early_ioremap() supp    
  4  * temporary mappings during boot before iorem    
  5  *                                                
  6  * This is mostly a direct copy of the x86 ear    
  7  *                                                
  8  * (C) Copyright 1995 1996, 2014 Linus Torvald    
  9  *                                                
 10  */                                               
 11 #include <linux/kernel.h>                         
 12 #include <linux/init.h>                           
 13 #include <linux/io.h>                             
 14 #include <linux/module.h>                         
 15 #include <linux/slab.h>                           
 16 #include <linux/mm.h>                             
 17 #include <linux/vmalloc.h>                        
 18 #include <asm/fixmap.h>                           
 19 #include <asm/early_ioremap.h>                    
 20 #include "internal.h"                             
 21                                                   
 22 #ifdef CONFIG_MMU                                 
 23 static int early_ioremap_debug __initdata;        
 24                                                   
 25 static int __init early_ioremap_debug_setup(ch    
 26 {                                                 
 27         early_ioremap_debug = 1;                  
 28                                                   
 29         return 0;                                 
 30 }                                                 
 31 early_param("early_ioremap_debug", early_iorem    
 32                                                   
 33 static int after_paging_init __initdata;          
 34                                                   
 35 pgprot_t __init __weak early_memremap_pgprot_a    
 36                                                   
 37                                                   
 38 {                                                 
 39         return prot;                              
 40 }                                                 
 41                                                   
 42 void __init early_ioremap_reset(void)             
 43 {                                                 
 44         after_paging_init = 1;                    
 45 }                                                 
 46                                                   
 47 /*                                                
 48  * Generally, ioremap() is available after pag    
 49  * Architectures wanting to allow early_iorema    
 50  * define __late_set_fixmap and __late_clear_f    
 51  */                                               
 52 #ifndef __late_set_fixmap                         
 53 static inline void __init __late_set_fixmap(en    
 54                                             ph    
 55 {                                                 
 56         BUG();                                    
 57 }                                                 
 58 #endif                                            
 59                                                   
 60 #ifndef __late_clear_fixmap                       
 61 static inline void __init __late_clear_fixmap(    
 62 {                                                 
 63         BUG();                                    
 64 }                                                 
 65 #endif                                            
 66                                                   
 67 static void __iomem *prev_map[FIX_BTMAPS_SLOTS    
 68 static unsigned long prev_size[FIX_BTMAPS_SLOT    
 69 static unsigned long slot_virt[FIX_BTMAPS_SLOT    
 70                                                   
 71 void __init early_ioremap_setup(void)             
 72 {                                                 
 73         int i;                                    
 74                                                   
 75         for (i = 0; i < FIX_BTMAPS_SLOTS; i++)    
 76                 WARN_ON_ONCE(prev_map[i]);        
 77                 slot_virt[i] = __fix_to_virt(F    
 78         }                                         
 79 }                                                 
 80                                                   
 81 static int __init check_early_ioremap_leak(voi    
 82 {                                                 
 83         int count = 0;                            
 84         int i;                                    
 85                                                   
 86         for (i = 0; i < FIX_BTMAPS_SLOTS; i++)    
 87                 if (prev_map[i])                  
 88                         count++;                  
 89                                                   
 90         if (WARN(count, KERN_WARNING              
 91                  "Debug warning: early ioremap    
 92                  "please boot with early_iorem    
 93                  count))                          
 94                 return 1;                         
 95         return 0;                                 
 96 }                                                 
 97 late_initcall(check_early_ioremap_leak);          
 98                                                   
 99 static void __init __iomem *                      
100 __early_ioremap(resource_size_t phys_addr, uns    
101 {                                                 
102         unsigned long offset;                     
103         resource_size_t last_addr;                
104         unsigned int nrpages;                     
105         enum fixed_addresses idx;                 
106         int i, slot;                              
107                                                   
108         WARN_ON(system_state >= SYSTEM_RUNNING    
109                                                   
110         slot = -1;                                
111         for (i = 0; i < FIX_BTMAPS_SLOTS; i++)    
112                 if (!prev_map[i]) {               
113                         slot = i;                 
114                         break;                    
115                 }                                 
116         }                                         
117                                                   
118         if (WARN(slot < 0, "%s(%pa, %08lx) not    
119                  __func__, &phys_addr, size))     
120                 return NULL;                      
121                                                   
122         /* Don't allow wraparound or zero size    
123         last_addr = phys_addr + size - 1;         
124         if (WARN_ON(!size || last_addr < phys_    
125                 return NULL;                      
126                                                   
127         prev_size[slot] = size;                   
128         /*                                        
129          * Mappings have to be page-aligned       
130          */                                       
131         offset = offset_in_page(phys_addr);       
132         phys_addr &= PAGE_MASK;                   
133         size = PAGE_ALIGN(last_addr + 1) - phy    
134                                                   
135         /*                                        
136          * Mappings have to fit in the FIX_BTM    
137          */                                       
138         nrpages = size >> PAGE_SHIFT;             
139         if (WARN_ON(nrpages > NR_FIX_BTMAPS))     
140                 return NULL;                      
141                                                   
142         /*                                        
143          * Ok, go for it..                        
144          */                                       
145         idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*    
146         while (nrpages > 0) {                     
147                 if (after_paging_init)            
148                         __late_set_fixmap(idx,    
149                 else                              
150                         __early_set_fixmap(idx    
151                 phys_addr += PAGE_SIZE;           
152                 --idx;                            
153                 --nrpages;                        
154         }                                         
155         WARN(early_ioremap_debug, "%s(%pa, %08    
156              __func__, &phys_addr, size, slot,    
157                                                   
158         prev_map[slot] = (void __iomem *)(offs    
159         return prev_map[slot];                    
160 }                                                 
161                                                   
162 void __init early_iounmap(void __iomem *addr,     
163 {                                                 
164         unsigned long virt_addr;                  
165         unsigned long offset;                     
166         unsigned int nrpages;                     
167         enum fixed_addresses idx;                 
168         int i, slot;                              
169                                                   
170         slot = -1;                                
171         for (i = 0; i < FIX_BTMAPS_SLOTS; i++)    
172                 if (prev_map[i] == addr) {        
173                         slot = i;                 
174                         break;                    
175                 }                                 
176         }                                         
177                                                   
178         if (WARN(slot < 0, "%s(%p, %08lx) not     
179                   __func__, addr, size))          
180                 return;                           
181                                                   
182         if (WARN(prev_size[slot] != size,         
183                  "%s(%p, %08lx) [%d] size not     
184                   __func__, addr, size, slot,     
185                 return;                           
186                                                   
187         WARN(early_ioremap_debug, "%s(%p, %08l    
188               __func__, addr, size, slot);        
189                                                   
190         virt_addr = (unsigned long)addr;          
191         if (WARN_ON(virt_addr < fix_to_virt(FI    
192                 return;                           
193                                                   
194         offset = offset_in_page(virt_addr);       
195         nrpages = PAGE_ALIGN(offset + size) >>    
196                                                   
197         idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*    
198         while (nrpages > 0) {                     
199                 if (after_paging_init)            
200                         __late_clear_fixmap(id    
201                 else                              
202                         __early_set_fixmap(idx    
203                 --idx;                            
204                 --nrpages;                        
205         }                                         
206         prev_map[slot] = NULL;                    
207 }                                                 
208                                                   
209 /* Remap an IO device */                          
210 void __init __iomem *                             
211 early_ioremap(resource_size_t phys_addr, unsig    
212 {                                                 
213         return __early_ioremap(phys_addr, size    
214 }                                                 
215                                                   
216 /* Remap memory */                                
217 void __init *                                     
218 early_memremap(resource_size_t phys_addr, unsi    
219 {                                                 
220         pgprot_t prot = early_memremap_pgprot_    
221                                                   
222                                                   
223         return (__force void *)__early_ioremap    
224 }                                                 
225 #ifdef FIXMAP_PAGE_RO                             
226 void __init *                                     
227 early_memremap_ro(resource_size_t phys_addr, u    
228 {                                                 
229         pgprot_t prot = early_memremap_pgprot_    
230                                                   
231                                                   
232         return (__force void *)__early_ioremap    
233 }                                                 
234 #endif                                            
235                                                   
236 #ifdef CONFIG_ARCH_USE_MEMREMAP_PROT              
237 void __init *                                     
238 early_memremap_prot(resource_size_t phys_addr,    
239                     unsigned long prot_val)       
240 {                                                 
241         return (__force void *)__early_ioremap    
242                                                   
243 }                                                 
244 #endif                                            
245                                                   
246 #define MAX_MAP_CHUNK   (NR_FIX_BTMAPS << PAGE    
247                                                   
248 void __init copy_from_early_mem(void *dest, ph    
249 {                                                 
250         unsigned long slop, clen;                 
251         char *p;                                  
252                                                   
253         while (size) {                            
254                 slop = offset_in_page(src);       
255                 clen = size;                      
256                 if (clen > MAX_MAP_CHUNK - slo    
257                         clen = MAX_MAP_CHUNK -    
258                 p = early_memremap(src & PAGE_    
259                 memcpy(dest, p + slop, clen);     
260                 early_memunmap(p, clen + slop)    
261                 dest += clen;                     
262                 src += clen;                      
263                 size -= clen;                     
264         }                                         
265 }                                                 
266                                                   
267 #else /* CONFIG_MMU */                            
268                                                   
269 void __init __iomem *                             
270 early_ioremap(resource_size_t phys_addr, unsig    
271 {                                                 
272         return (__force void __iomem *)phys_ad    
273 }                                                 
274                                                   
275 /* Remap memory */                                
276 void __init *                                     
277 early_memremap(resource_size_t phys_addr, unsi    
278 {                                                 
279         return (void *)phys_addr;                 
280 }                                                 
281 void __init *                                     
282 early_memremap_ro(resource_size_t phys_addr, u    
283 {                                                 
284         return (void *)phys_addr;                 
285 }                                                 
286                                                   
287 void __init early_iounmap(void __iomem *addr,     
288 {                                                 
289 }                                                 
290                                                   
291 #endif /* CONFIG_MMU */                           
292                                                   
293                                                   
294 void __init early_memunmap(void *addr, unsigne    
295 {                                                 
296         early_iounmap((__force void __iomem *)    
297 }                                                 
298                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php