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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-omap1/io.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/arm/mach-omap1/io.c (Version linux-6.12-rc7) and /arch/mips/mach-omap1/io.c (Version linux-5.5.19)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * linux/arch/arm/mach-omap1/io.c                 
  4  *                                                
  5  * OMAP1 I/O mapping code                         
  6  */                                               
  7                                                   
  8 #include <linux/module.h>                         
  9 #include <linux/kernel.h>                         
 10 #include <linux/init.h>                           
 11 #include <linux/io.h>                             
 12 #include <linux/omap-dma.h>                       
 13                                                   
 14 #include <asm/tlb.h>                              
 15 #include <asm/mach/map.h>                         
 16                                                   
 17 #include "tc.h"                                   
 18 #include "iomap.h"                                
 19 #include "common.h"                               
 20                                                   
 21 /*                                                
 22  * The machine specific code may provide the e    
 23  * default mapping provided here.                 
 24  */                                               
 25 static struct map_desc omap1_io_desc[] __initd    
 26         {                                         
 27                 .virtual        = OMAP1_IO_VIR    
 28                 .pfn            = __phys_to_pf    
 29                 .length         = OMAP1_IO_SIZ    
 30                 .type           = MT_DEVICE       
 31         }, {                                      
 32                 .virtual        = OMAP1_DSP_BA    
 33                 .pfn            = __phys_to_pf    
 34                 .length         = OMAP1_DSP_SI    
 35                 .type           = MT_DEVICE       
 36         }, {                                      
 37                 .virtual        = OMAP1_DSPREG    
 38                 .pfn            = __phys_to_pf    
 39                 .length         = OMAP1_DSPREG    
 40                 .type           = MT_DEVICE       
 41         }                                         
 42 };                                                
 43                                                   
 44 /*                                                
 45  * Maps common IO regions for omap1               
 46  */                                               
 47 void __init omap1_map_io(void)                    
 48 {                                                 
 49         iotable_init(omap1_io_desc, ARRAY_SIZE    
 50 }                                                 
 51                                                   
 52 /*                                                
 53  * Common low-level hardware init for omap1.      
 54  */                                               
 55 void __init omap1_init_early(void)                
 56 {                                                 
 57         omap_check_revision();                    
 58                                                   
 59         /* REVISIT: Refer to OMAP5910 Errata,     
 60          * on a Posted Write in the TIPB Bridg    
 61          */                                       
 62         omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL)    
 63         omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL    
 64 }                                                 
 65                                                   
 66 void __init omap1_init_late(void)                 
 67 {                                                 
 68         omap_serial_wakeup_init();                
 69 }                                                 
 70                                                   
 71 /*                                                
 72  * NOTE: Please use ioremap + __raw_read/write    
 73  */                                               
 74                                                   
 75 u8 omap_readb(u32 pa)                             
 76 {                                                 
 77         return __raw_readb(OMAP1_IO_ADDRESS(pa    
 78 }                                                 
 79 EXPORT_SYMBOL(omap_readb);                        
 80                                                   
 81 u16 omap_readw(u32 pa)                            
 82 {                                                 
 83         return __raw_readw(OMAP1_IO_ADDRESS(pa    
 84 }                                                 
 85 EXPORT_SYMBOL(omap_readw);                        
 86                                                   
 87 u32 omap_readl(u32 pa)                            
 88 {                                                 
 89         return __raw_readl(OMAP1_IO_ADDRESS(pa    
 90 }                                                 
 91 EXPORT_SYMBOL(omap_readl);                        
 92                                                   
 93 void omap_writeb(u8 v, u32 pa)                    
 94 {                                                 
 95         __raw_writeb(v, OMAP1_IO_ADDRESS(pa));    
 96 }                                                 
 97 EXPORT_SYMBOL(omap_writeb);                       
 98                                                   
 99 void omap_writew(u16 v, u32 pa)                   
100 {                                                 
101         __raw_writew(v, OMAP1_IO_ADDRESS(pa));    
102 }                                                 
103 EXPORT_SYMBOL(omap_writew);                       
104                                                   
105 void omap_writel(u32 v, u32 pa)                   
106 {                                                 
107         __raw_writel(v, OMAP1_IO_ADDRESS(pa));    
108 }                                                 
109 EXPORT_SYMBOL(omap_writel);                       
110                                                   

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