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

TOMOYO Linux Cross Reference
Linux/arch/loongarch/include/asm/addrspace.h

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/loongarch/include/asm/addrspace.h (Architecture sparc64) and /arch/i386/include/asm-i386/addrspace.h (Architecture i386)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 /*                                                
  3  * Copyright (C) 2020-2022 Loongson Technology    
  4  *                                                
  5  * Derived from MIPS:                             
  6  * Copyright (C) 1996, 99 Ralf Baechle            
  7  * Copyright (C) 2000, 2002  Maciej W. Rozycki    
  8  * Copyright (C) 1990, 1999 by Silicon Graphic    
  9  */                                               
 10 #ifndef _ASM_ADDRSPACE_H                          
 11 #define _ASM_ADDRSPACE_H                          
 12                                                   
 13 #include <linux/const.h>                          
 14 #include <linux/sizes.h>                          
 15                                                   
 16 #include <asm/loongarch.h>                        
 17                                                   
 18 /*                                                
 19  * This gives the physical RAM offset.            
 20  */                                               
 21 #ifndef __ASSEMBLY__                              
 22 #ifndef PHYS_OFFSET                               
 23 #define PHYS_OFFSET     _UL(0)                    
 24 #endif                                            
 25 extern unsigned long vm_map_base;                 
 26 #endif /* __ASSEMBLY__ */                         
 27                                                   
 28 #ifndef IO_BASE                                   
 29 #define IO_BASE                 CSR_DMW0_BASE     
 30 #endif                                            
 31                                                   
 32 #ifndef CACHE_BASE                                
 33 #define CACHE_BASE              CSR_DMW1_BASE     
 34 #endif                                            
 35                                                   
 36 #ifndef UNCACHE_BASE                              
 37 #define UNCACHE_BASE            CSR_DMW0_BASE     
 38 #endif                                            
 39                                                   
 40 #ifndef WRITECOMBINE_BASE                         
 41 #define WRITECOMBINE_BASE       CSR_DMW2_BASE     
 42 #endif                                            
 43                                                   
 44 #define DMW_PABITS      48                        
 45 #define TO_PHYS_MASK    ((1ULL << DMW_PABITS)     
 46                                                   
 47 /*                                                
 48  * Memory above this physical address will be     
 49  */                                               
 50 #ifndef HIGHMEM_START                             
 51 #define HIGHMEM_START           (_UL(1) << _UL    
 52 #endif                                            
 53                                                   
 54 #define TO_PHYS(x)              (                 
 55 #define TO_CACHE(x)             (CACHE_BASE       
 56 #define TO_UNCACHE(x)           (UNCACHE_BASE     
 57                                                   
 58 /*                                                
 59  * This handles the memory map.                   
 60  */                                               
 61 #ifndef PAGE_OFFSET                               
 62 #define PAGE_OFFSET             (CACHE_BASE +     
 63 #endif                                            
 64                                                   
 65 #ifndef FIXADDR_TOP                               
 66 #define FIXADDR_TOP             ((unsigned lon    
 67 #endif                                            
 68                                                   
 69 #ifdef __ASSEMBLY__                               
 70 #define _ATYPE_                                   
 71 #define _ATYPE32_                                 
 72 #define _ATYPE64_                                 
 73 #else                                             
 74 #define _ATYPE_         __PTRDIFF_TYPE__          
 75 #define _ATYPE32_       int                       
 76 #define _ATYPE64_       __s64                     
 77 #endif                                            
 78                                                   
 79 #ifdef CONFIG_64BIT                               
 80 #define _CONST64_(x)    _UL(x)                    
 81 #else                                             
 82 #define _CONST64_(x)    _ULL(x)                   
 83 #endif                                            
 84                                                   
 85 /*                                                
 86  *  32/64-bit LoongArch address spaces            
 87  */                                               
 88 #ifdef __ASSEMBLY__                               
 89 #define _ACAST32_                                 
 90 #define _ACAST64_                                 
 91 #else                                             
 92 #define _ACAST32_               (_ATYPE_)(_ATY    
 93 #define _ACAST64_               (_ATYPE64_)       
 94 #endif                                            
 95                                                   
 96 #ifdef CONFIG_32BIT                               
 97                                                   
 98 #define UVRANGE                 0x00000000        
 99 #define KPRANGE0                0x80000000        
100 #define KPRANGE1                0xa0000000        
101 #define KVRANGE                 0xc0000000        
102                                                   
103 #else                                             
104                                                   
105 #define XUVRANGE                _CONST64_(0x00    
106 #define XSPRANGE                _CONST64_(0x40    
107 #define XKPRANGE                _CONST64_(0x80    
108 #define XKVRANGE                _CONST64_(0xc0    
109                                                   
110 #endif                                            
111                                                   
112 /*                                                
113  * Returns the physical address of a KPRANGEx     
114  */                                               
115 #define PHYSADDR(a)             ((_ACAST64_(a)    
116                                                   
117 /*                                                
118  * On LoongArch, I/O ports mappring is followi    
119  *                                                
120  *              |         ....          |         
121  *              |-----------------------|         
122  *              | pci io ports(16K~32M) |         
123  *              |-----------------------|         
124  *              | isa io ports(0  ~16K) |         
125  * PCI_IOBASE ->|-----------------------|         
126  *              |         ....          |         
127  */                                               
128 #define PCI_IOBASE      ((void __iomem *)(vm_m    
129 #define PCI_IOSIZE      SZ_32M                    
130 #define ISA_IOSIZE      SZ_16K                    
131 #define IO_SPACE_LIMIT  (PCI_IOSIZE - 1)          
132                                                   
133 #define PHYS_LINK_KADDR PHYSADDR(VMLINUX_LOAD_    
134                                                   
135 #endif /* _ASM_ADDRSPACE_H */                     
136                                                   

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