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

TOMOYO Linux Cross Reference
Linux/arch/sparc/kernel/ioport.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/sparc/kernel/ioport.c (Architecture ppc) and /arch/i386/kernel/ioport.c (Architecture i386)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * ioport.c:  Simple io mapping allocator.        
  4  *                                                
  5  * Copyright (C) 1995 David S. Miller (davem@c    
  6  * Copyright (C) 1995 Miguel de Icaza (miguel@    
  7  *                                                
  8  * 1996: sparc_free_io, 1999: ioremap()/iounma    
  9  *                                                
 10  * 2000/01/29                                     
 11  * <rth> zait: as long as pci_alloc_consistent    
 12  *      things are ok.                            
 13  * <zaitcev> rth: no, it is relevant, because     
 14  *      pointer into the big page mapping         
 15  * <rth> zait: so what?                           
 16  * <rth> zait: remap_it_my_way(virt_to_phys(ge    
 17  * <zaitcev> Hmm                                  
 18  * <zaitcev> Suppose I did this remap_it_my_wa    
 19  *      So far so good.                           
 20  * <zaitcev> Now, driver calls pci_free_consis    
 21  *      remap_it_my_way()).                       
 22  * <zaitcev> How do you find the address to pa    
 23  * <rth> zait: walk the page tables?  It's onl    
 24  * <rth> zait: you have to walk them anyway to    
 25  * <zaitcev> Hmm                                  
 26  * <zaitcev> Sounds reasonable                    
 27  */                                               
 28                                                   
 29 #include <linux/module.h>                         
 30 #include <linux/sched.h>                          
 31 #include <linux/kernel.h>                         
 32 #include <linux/errno.h>                          
 33 #include <linux/types.h>                          
 34 #include <linux/ioport.h>                         
 35 #include <linux/mm.h>                             
 36 #include <linux/slab.h>                           
 37 #include <linux/pci.h>          /* struct pci_    
 38 #include <linux/proc_fs.h>                        
 39 #include <linux/seq_file.h>                       
 40 #include <linux/scatterlist.h>                    
 41 #include <linux/dma-map-ops.h>                    
 42 #include <linux/of.h>                             
 43                                                   
 44 #include <asm/io.h>                               
 45 #include <asm/vaddrs.h>                           
 46 #include <asm/oplib.h>                            
 47 #include <asm/prom.h>                             
 48 #include <asm/page.h>                             
 49 #include <asm/pgalloc.h>                          
 50 #include <asm/dma.h>                              
 51 #include <asm/iommu.h>                            
 52 #include <asm/io-unit.h>                          
 53 #include <asm/leon.h>                             
 54                                                   
 55 static void __iomem *_sparc_ioremap(struct res    
 56 static void __iomem *_sparc_alloc_io(unsigned     
 57     unsigned long size, char *name);              
 58 static void _sparc_free_io(struct resource *re    
 59                                                   
 60 static void register_proc_sparc_ioport(void);     
 61                                                   
 62 /* This points to the next to use virtual memo    
 63 static struct resource _sparc_dvma = {            
 64         .name = "sparc_dvma", .start = DVMA_VA    
 65 };                                                
 66 /* This points to the start of I/O mappings, c    
 67 /*ext*/ struct resource sparc_iomap = {           
 68         .name = "sparc_iomap", .start = IOBASE    
 69 };                                                
 70                                                   
 71 /*                                                
 72  * Our mini-allocator...                          
 73  * Boy this is gross! We need it because we mu    
 74  * timers and interrupt controller before the     
 75  */                                               
 76                                                   
 77 #define XNMLN  15                                 
 78 #define XNRES  10       /* SS-10 uses 8 */        
 79                                                   
 80 struct xresource {                                
 81         struct resource xres;   /* Must be fir    
 82         int xflag;              /* 1 == used *    
 83         char xname[XNMLN+1];                      
 84 };                                                
 85                                                   
 86 static struct xresource xresv[XNRES];             
 87                                                   
 88 static struct xresource *xres_alloc(void) {       
 89         struct xresource *xrp;                    
 90         int n;                                    
 91                                                   
 92         xrp = xresv;                              
 93         for (n = 0; n < XNRES; n++) {             
 94                 if (xrp->xflag == 0) {            
 95                         xrp->xflag = 1;           
 96                         return xrp;               
 97                 }                                 
 98                 xrp++;                            
 99         }                                         
100         return NULL;                              
101 }                                                 
102                                                   
103 static void xres_free(struct xresource *xrp) {    
104         xrp->xflag = 0;                           
105 }                                                 
106                                                   
107 /*                                                
108  * These are typically used in PCI drivers        
109  * which are trying to be cross-platform.         
110  *                                                
111  * Bus type is always zero on IIep.               
112  */                                               
113 void __iomem *ioremap(phys_addr_t offset, size    
114 {                                                 
115         char name[14];                            
116                                                   
117         sprintf(name, "phys_%08x", (u32)offset    
118         return _sparc_alloc_io(0, (unsigned lo    
119 }                                                 
120 EXPORT_SYMBOL(ioremap);                           
121                                                   
122 /*                                                
123  * Complementary to ioremap().                    
124  */                                               
125 void iounmap(volatile void __iomem *virtual)      
126 {                                                 
127         unsigned long vaddr = (unsigned long)     
128         struct resource *res;                     
129                                                   
130         /*                                        
131          * XXX Too slow. Can have 8192 DVMA pa    
132          * This probably warrants some sort of    
133         */                                        
134         if ((res = lookup_resource(&sparc_ioma    
135                 printk("free_io/iounmap: canno    
136                 return;                           
137         }                                         
138         _sparc_free_io(res);                      
139                                                   
140         if ((char *)res >= (char*)xresv && (ch    
141                 xres_free((struct xresource *)    
142         } else {                                  
143                 kfree(res);                       
144         }                                         
145 }                                                 
146 EXPORT_SYMBOL(iounmap);                           
147                                                   
148 void __iomem *of_ioremap(struct resource *res,    
149                          unsigned long size, c    
150 {                                                 
151         return _sparc_alloc_io(res->flags & 0x    
152                                res->start + of    
153                                size, name);       
154 }                                                 
155 EXPORT_SYMBOL(of_ioremap);                        
156                                                   
157 void of_iounmap(struct resource *res, void __i    
158 {                                                 
159         iounmap(base);                            
160 }                                                 
161 EXPORT_SYMBOL(of_iounmap);                        
162                                                   
163 /*                                                
164  * Meat of mapping                                
165  */                                               
166 static void __iomem *_sparc_alloc_io(unsigned     
167     unsigned long size, char *name)               
168 {                                                 
169         static int printed_full;                  
170         struct xresource *xres;                   
171         struct resource *res;                     
172         char *tack;                               
173         int tlen;                                 
174         void __iomem *va;       /* P3 diag */     
175                                                   
176         if (name == NULL) name = "???";           
177                                                   
178         if ((xres = xres_alloc()) != NULL) {      
179                 tack = xres->xname;               
180                 res = &xres->xres;                
181         } else {                                  
182                 if (!printed_full) {              
183                         printk("ioremap: done     
184                         printed_full = 1;         
185                 }                                 
186                 tlen = strlen(name);              
187                 tack = kmalloc(sizeof (struct     
188                 if (tack == NULL) return NULL;    
189                 memset(tack, 0, sizeof(struct     
190                 res = (struct resource *) tack    
191                 tack += sizeof (struct resourc    
192         }                                         
193                                                   
194         strscpy(tack, name, XNMLN+1);             
195         res->name = tack;                         
196                                                   
197         va = _sparc_ioremap(res, busno, phys,     
198         /* printk("ioremap(0x%x:%08lx[0x%lx])=    
199         return va;                                
200 }                                                 
201                                                   
202 /*                                                
203  */                                               
204 static void __iomem *                             
205 _sparc_ioremap(struct resource *res, u32 bus,     
206 {                                                 
207         unsigned long offset = ((unsigned long    
208                                                   
209         if (allocate_resource(&sparc_iomap, re    
210             (offset + sz + PAGE_SIZE-1) & PAGE    
211             sparc_iomap.start, sparc_iomap.end    
212                 /* Usually we cannot see print    
213                 prom_printf("alloc_io_res(%s):    
214                     (res->name != NULL)? res->    
215                 prom_halt();                      
216         }                                         
217                                                   
218         pa &= PAGE_MASK;                          
219         srmmu_mapiorange(bus, pa, res->start,     
220                                                   
221         return (void __iomem *)(unsigned long)    
222 }                                                 
223                                                   
224 /*                                                
225  * Complementary to _sparc_ioremap().             
226  */                                               
227 static void _sparc_free_io(struct resource *re    
228 {                                                 
229         unsigned long plen;                       
230                                                   
231         plen = resource_size(res);                
232         BUG_ON((plen & (PAGE_SIZE-1)) != 0);      
233         srmmu_unmapiorange(res->start, plen);     
234         release_resource(res);                    
235 }                                                 
236                                                   
237 unsigned long sparc_dma_alloc_resource(struct     
238 {                                                 
239         struct resource *res;                     
240                                                   
241         res = kzalloc(sizeof(*res), GFP_KERNEL    
242         if (!res)                                 
243                 return 0;                         
244         res->name = dev->of_node->full_name;      
245                                                   
246         if (allocate_resource(&_sparc_dvma, re    
247                               _sparc_dvma.end,    
248                 printk("%s: cannot occupy 0x%z    
249                 kfree(res);                       
250                 return 0;                         
251         }                                         
252                                                   
253         return res->start;                        
254 }                                                 
255                                                   
256 bool sparc_dma_free_resource(void *cpu_addr, s    
257 {                                                 
258         unsigned long addr = (unsigned long)cp    
259         struct resource *res;                     
260                                                   
261         res = lookup_resource(&_sparc_dvma, ad    
262         if (!res) {                               
263                 printk("%s: cannot free %p\n",    
264                 return false;                     
265         }                                         
266                                                   
267         if ((addr & (PAGE_SIZE - 1)) != 0) {      
268                 printk("%s: unaligned va %p\n"    
269                 return false;                     
270         }                                         
271                                                   
272         size = PAGE_ALIGN(size);                  
273         if (resource_size(res) != size) {         
274                 printk("%s: region 0x%lx asked    
275                         __func__, (long)resour    
276                 return false;                     
277         }                                         
278                                                   
279         release_resource(res);                    
280         kfree(res);                               
281         return true;                              
282 }                                                 
283                                                   
284 #ifdef CONFIG_SBUS                                
285                                                   
286 void sbus_set_sbus64(struct device *dev, int x    
287 {                                                 
288         printk("sbus_set_sbus64: unsupported\n    
289 }                                                 
290 EXPORT_SYMBOL(sbus_set_sbus64);                   
291                                                   
292 static int __init sparc_register_ioport(void)     
293 {                                                 
294         register_proc_sparc_ioport();             
295                                                   
296         return 0;                                 
297 }                                                 
298                                                   
299 arch_initcall(sparc_register_ioport);             
300                                                   
301 #endif /* CONFIG_SBUS */                          
302                                                   
303 /*                                                
304  * IIep is write-through, not flushing on cpu     
305  *                                                
306  * On LEON systems without cache snooping, the    
307  * make DMA to cacheable memory coherent.         
308  */                                               
309 void arch_sync_dma_for_cpu(phys_addr_t paddr,     
310                 enum dma_data_direction dir)      
311 {                                                 
312         if (dir != DMA_TO_DEVICE &&               
313             sparc_cpu_model == sparc_leon &&      
314             !sparc_leon3_snooping_enabled())      
315                 leon_flush_dcache_all();          
316 }                                                 
317                                                   
318 #ifdef CONFIG_PROC_FS                             
319                                                   
320 static int sparc_io_proc_show(struct seq_file     
321 {                                                 
322         struct resource *root = m->private, *r    
323         const char *nm;                           
324                                                   
325         for (r = root->child; r != NULL; r = r    
326                 if ((nm = r->name) == NULL) nm    
327                 seq_printf(m, "%016llx-%016llx    
328                                 (unsigned long    
329                                 (unsigned long    
330         }                                         
331                                                   
332         return 0;                                 
333 }                                                 
334 #endif /* CONFIG_PROC_FS */                       
335                                                   
336 static void register_proc_sparc_ioport(void)      
337 {                                                 
338 #ifdef CONFIG_PROC_FS                             
339         proc_create_single_data("io_map", 0, N    
340                         &sparc_iomap);            
341         proc_create_single_data("dvma_map", 0,    
342                         &_sparc_dvma);            
343 #endif                                            
344 }                                                 
345                                                   

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