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

TOMOYO Linux Cross Reference
Linux/arch/sparc/include/asm/sbi.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/sparc/include/asm/sbi.h (Architecture alpha) and /arch/m68k/include/asm-m68k/sbi.h (Architecture m68k)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 /*                                                
  3  * sbi.h:  SBI (Sbus Interface on sun4d) defin    
  4  *                                                
  5  * Copyright (C) 1997 Jakub Jelinek <jj@sunsit    
  6  */                                               
  7                                                   
  8 #ifndef _SPARC_SBI_H                              
  9 #define _SPARC_SBI_H                              
 10                                                   
 11 #include <asm/obio.h>                             
 12                                                   
 13 /* SBI */                                         
 14 struct sbi_regs {                                 
 15 /* 0x0000 */    u32             cid;              
 16 /* 0x0004 */    u32             ctl;              
 17 /* 0x0008 */    u32             status;           
 18                 u32             _unused1;         
 19                                                   
 20 /* 0x0010 */    u32             cfg0;             
 21 /* 0x0014 */    u32             cfg1;             
 22 /* 0x0018 */    u32             cfg2;             
 23 /* 0x001c */    u32             cfg3;             
 24                                                   
 25 /* 0x0020 */    u32             stb0;             
 26 /* 0x0024 */    u32             stb1;             
 27 /* 0x0028 */    u32             stb2;             
 28 /* 0x002c */    u32             stb3;             
 29                                                   
 30 /* 0x0030 */    u32             intr_state;       
 31 /* 0x0034 */    u32             intr_tid;         
 32 /* 0x0038 */    u32             intr_diag;        
 33 };                                                
 34                                                   
 35 #define SBI_CID                 0x02800000        
 36 #define SBI_CTL                 0x02800004        
 37 #define SBI_STATUS              0x02800008        
 38 #define SBI_CFG0                0x02800010        
 39 #define SBI_CFG1                0x02800014        
 40 #define SBI_CFG2                0x02800018        
 41 #define SBI_CFG3                0x0280001c        
 42 #define SBI_STB0                0x02800020        
 43 #define SBI_STB1                0x02800024        
 44 #define SBI_STB2                0x02800028        
 45 #define SBI_STB3                0x0280002c        
 46 #define SBI_INTR_STATE          0x02800030        
 47 #define SBI_INTR_TID            0x02800034        
 48 #define SBI_INTR_DIAG           0x02800038        
 49                                                   
 50 /* Burst bits for 8, 16, 32, 64 are in cfgX re    
 51 #define SBI_CFG_BURST_MASK      0x0000001e        
 52                                                   
 53 /* How to make devid from sbi no */               
 54 #define SBI2DEVID(sbino) ((sbino<<4)|2)           
 55                                                   
 56 /* intr_state has 4 bits for slots 0 .. 3 and     
 57  *                                                
 58  *                 +-------+-------+-------+--    
 59  *  SBUS IRQ LEVEL |   7   |   6   |   5   |      
 60  *                 +-+-+-+-+-+-+-+-+-+-+-+-+-+    
 61  *  SLOT #         |3|2|1|0|3|2|1|0|3|2|1|0|3|    
 62  *                 +-+-+-+-+-+-+-+-+-+-+-+-+-+    
 63  *  Bits           31      27      23      19     
 64  */                                               
 65                                                   
 66                                                   
 67 #ifndef __ASSEMBLY__                              
 68                                                   
 69 static inline int acquire_sbi(int devid, int m    
 70 {                                                 
 71         __asm__ __volatile__ ("swapa [%2] %3,     
 72                               "=r" (mask) :       
 73                               "" (mask),          
 74                               "r" (ECSR_DEV_BA    
 75                               "i" (ASI_M_CTL))    
 76         return mask;                              
 77 }                                                 
 78                                                   
 79 static inline void release_sbi(int devid, int     
 80 {                                                 
 81         __asm__ __volatile__ ("sta %0, [%1] %2    
 82                               "r" (mask),         
 83                               "r" (ECSR_DEV_BA    
 84                               "i" (ASI_M_CTL))    
 85 }                                                 
 86                                                   
 87 static inline void set_sbi_tid(int devid, int     
 88 {                                                 
 89         __asm__ __volatile__ ("sta %0, [%1] %2    
 90                               "r" (targetid),     
 91                               "r" (ECSR_DEV_BA    
 92                               "i" (ASI_M_CTL))    
 93 }                                                 
 94                                                   
 95 static inline int get_sbi_ctl(int devid, int c    
 96 {                                                 
 97         int cfg;                                  
 98                                                   
 99         __asm__ __volatile__ ("lda [%1] %2, %0    
100                               "=r" (cfg) :        
101                               "r" ((ECSR_DEV_B    
102                               "i" (ASI_M_CTL))    
103         return cfg;                               
104 }                                                 
105                                                   
106 static inline void set_sbi_ctl(int devid, int     
107 {                                                 
108         __asm__ __volatile__ ("sta %0, [%1] %2    
109                               "r" (cfg),          
110                               "r" ((ECSR_DEV_B    
111                               "i" (ASI_M_CTL))    
112 }                                                 
113                                                   
114 #endif /* !__ASSEMBLY__ */                        
115                                                   
116 #endif /* !(_SPARC_SBI_H) */                      
117                                                   

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