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

TOMOYO Linux Cross Reference
Linux/arch/sh/mm/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 /arch/sh/mm/ioremap.c (Architecture i386) and /arch/m68k/mm/ioremap.c (Architecture m68k)


  1 /*                                                  1 
  2  * arch/sh/mm/ioremap.c                           
  3  *                                                
  4  * (C) Copyright 1995 1996 Linus Torvalds         
  5  * (C) Copyright 2005 - 2010  Paul Mundt          
  6  *                                                
  7  * Re-map IO memory to kernel address space so    
  8  * This is needed for high PCI addresses that     
  9  * 640k-1MB IO memory area on PC's                
 10  *                                                
 11  * This file is subject to the terms and condi    
 12  * Public License. See the file "COPYING" in t    
 13  * archive for more details.                      
 14  */                                               
 15 #include <linux/vmalloc.h>                        
 16 #include <linux/module.h>                         
 17 #include <linux/slab.h>                           
 18 #include <linux/mm.h>                             
 19 #include <linux/pci.h>                            
 20 #include <linux/io.h>                             
 21 #include <asm/io_trapped.h>                       
 22 #include <asm/page.h>                             
 23 #include <asm/pgalloc.h>                          
 24 #include <asm/addrspace.h>                        
 25 #include <asm/cacheflush.h>                       
 26 #include <asm/tlbflush.h>                         
 27 #include <asm/mmu.h>                              
 28 #include "ioremap.h"                              
 29                                                   
 30 /*                                                
 31  * On 32-bit SH, we traditionally have the who    
 32  * at all times (as MIPS does), so "ioremap()"    
 33  * anything but place the address in the prope    
 34  * and P2 addresses, as well as some P3 ones.     
 35  * and newer cores using extended addressing n    
 36  * the ioremap() implementation becomes a bit     
 37  */                                               
 38 #ifdef CONFIG_29BIT                               
 39 static void __iomem *                             
 40 __ioremap_29bit(phys_addr_t offset, unsigned l    
 41 {                                                 
 42         phys_addr_t last_addr = offset + size     
 43                                                   
 44         /*                                        
 45          * For P1 and P2 space this is trivial    
 46          * mapped. Uncached access for P1 addr    
 47          * In the P3 case or for addresses out    
 48          * mapping must be done by the PMB or     
 49          */                                       
 50         if (likely(PXSEG(offset) < P3SEG && PX    
 51                 u64 flags = pgprot_val(prot);     
 52                                                   
 53                 /*                                
 54                  * Anything using the legacy P    
 55                  * to be kicked down to page t    
 56                  */                               
 57                 if (unlikely(flags & _PAGE_PCC    
 58                         return NULL;              
 59                 if (unlikely(flags & _PAGE_CAC    
 60                         return (void __iomem *    
 61                                                   
 62                 return (void __iomem *)P2SEGAD    
 63         }                                         
 64                                                   
 65         /* P4 above the store queues are alway    
 66         if (unlikely(offset >= P3_ADDR_MAX))      
 67                 return (void __iomem *)P4SEGAD    
 68                                                   
 69         return NULL;                              
 70 }                                                 
 71 #else                                             
 72 #define __ioremap_29bit(offset, size, prot)       
 73 #endif /* CONFIG_29BIT */                         
 74                                                   
 75 void __iomem __ref *ioremap_prot(phys_addr_t p    
 76                                  unsigned long    
 77 {                                                 
 78         void __iomem *mapped;                     
 79         pgprot_t pgprot = __pgprot(prot);         
 80                                                   
 81         mapped = __ioremap_trapped(phys_addr,     
 82         if (mapped)                               
 83                 return mapped;                    
 84                                                   
 85         mapped = __ioremap_29bit(phys_addr, si    
 86         if (mapped)                               
 87                 return mapped;                    
 88                                                   
 89         /*                                        
 90          * If we can't yet use the regular app    
 91          */                                       
 92         if (!mem_init_done)                       
 93                 return ioremap_fixed(phys_addr    
 94                                                   
 95         /*                                        
 96          * First try to remap through the PMB.    
 97          * PMB entries are all pre-faulted.       
 98          */                                       
 99         mapped = pmb_remap_caller(phys_addr, s    
100                         __builtin_return_addre    
101         if (mapped && !IS_ERR(mapped))            
102                 return mapped;                    
103                                                   
104         return generic_ioremap_prot(phys_addr,    
105 }                                                 
106 EXPORT_SYMBOL(ioremap_prot);                      
107                                                   
108 /*                                                
109  * Simple checks for non-translatable mappings    
110  */                                               
111 static inline int iomapping_nontranslatable(un    
112 {                                                 
113 #ifdef CONFIG_29BIT                               
114         /*                                        
115          * In 29-bit mode this includes the fi    
116          * parts of P3.                           
117          */                                       
118         if (PXSEG(offset) < P3SEG || offset >=    
119                 return 1;                         
120 #endif                                            
121                                                   
122         return 0;                                 
123 }                                                 
124                                                   
125 void iounmap(volatile void __iomem *addr)         
126 {                                                 
127         unsigned long vaddr = (unsigned long _    
128                                                   
129         /*                                        
130          * Nothing to do if there is no transl    
131          */                                       
132         if (iomapping_nontranslatable(vaddr))     
133                 return;                           
134                                                   
135         /*                                        
136          * There's no VMA if it's from an earl    
137          */                                       
138         if (iounmap_fixed((void __iomem *)addr    
139                 return;                           
140                                                   
141         /*                                        
142          * If the PMB handled it, there's noth    
143          */                                       
144         if (pmb_unmap((void __iomem *)addr) ==    
145                 return;                           
146                                                   
147         generic_iounmap(addr);                    
148 }                                                 
149 EXPORT_SYMBOL(iounmap);                           
150                                                   

~ [ 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