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

TOMOYO Linux Cross Reference
Linux/arch/powerpc/include/asm/hydra.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/powerpc/include/asm/hydra.h (Architecture m68k) and /arch/ppc/include/asm-ppc/hydra.h (Architecture ppc)


  1 /*                                                  1 
  2  *  include/asm-ppc/hydra.h -- Mac I/O `Hydra'    
  3  *                                                
  4  *  Copyright (C) 1997 Geert Uytterhoeven         
  5  *                                                
  6  *  This file is based on the following docume    
  7  *                                                
  8  *      Macintosh Technology in the Common Har    
  9  *      Apple Computer, Inc.                      
 10  *                                                
 11  *      © Copyright 1995 Apple Computer, Inc.    
 12  *                                                
 13  *  It's available online from https://www.cpu    
 14  *  You can obtain paper copies of this book f    
 15  *  writing Morgan Kaufmann Publishers, Inc.,     
 16  *  Francisco, CA 94104. Reference ISBN 1-5586    
 17  *                                                
 18  *  This file is subject to the terms and cond    
 19  *  License.  See the file COPYING in the main    
 20  *  for more details.                             
 21  */                                               
 22                                                   
 23 #ifndef _ASMPPC_HYDRA_H                           
 24 #define _ASMPPC_HYDRA_H                           
 25                                                   
 26 #ifdef __KERNEL__                                 
 27                                                   
 28 struct Hydra {                                    
 29     /* DBDMA Controller Register Space */         
 30     char Pad1[0x30];                              
 31     u_int CachePD;                                
 32     u_int IDs;                                    
 33     u_int Feature_Control;                        
 34     char Pad2[0x7fc4];                            
 35     /* DBDMA Channel Register Space */            
 36     char SCSI_DMA[0x100];                         
 37     char Pad3[0x300];                             
 38     char SCCA_Tx_DMA[0x100];                      
 39     char SCCA_Rx_DMA[0x100];                      
 40     char SCCB_Tx_DMA[0x100];                      
 41     char SCCB_Rx_DMA[0x100];                      
 42     char Pad4[0x7800];                            
 43     /* Device Register Space */                   
 44     char SCSI[0x1000];                            
 45     char ADB[0x1000];                             
 46     char SCC_Legacy[0x1000];                      
 47     char SCC[0x1000];                             
 48     char Pad9[0x2000];                            
 49     char VIA[0x2000];                             
 50     char Pad10[0x28000];                          
 51     char OpenPIC[0x40000];                        
 52 };                                                
 53                                                   
 54 extern volatile struct Hydra __iomem *Hydra;      
 55                                                   
 56                                                   
 57     /*                                            
 58      *  Feature Control Register                  
 59      */                                           
 60                                                   
 61 #define HYDRA_FC_SCC_CELL_EN    0x00000001        
 62 #define HYDRA_FC_SCSI_CELL_EN   0x00000002        
 63 #define HYDRA_FC_SCCA_ENABLE    0x00000004        
 64 #define HYDRA_FC_SCCB_ENABLE    0x00000008        
 65 #define HYDRA_FC_ARB_BYPASS     0x00000010        
 66 #define HYDRA_FC_RESET_SCC      0x00000020        
 67 #define HYDRA_FC_MPIC_ENABLE    0x00000040        
 68 #define HYDRA_FC_SLOW_SCC_PCLK  0x00000080        
 69 #define HYDRA_FC_MPIC_IS_MASTER 0x00000100        
 70                                                   
 71                                                   
 72     /*                                            
 73      *  OpenPIC Interrupt Sources                 
 74      */                                           
 75                                                   
 76 #define HYDRA_INT_SIO           0                 
 77 #define HYDRA_INT_SCSI_DMA      1                 
 78 #define HYDRA_INT_SCCA_TX_DMA   2                 
 79 #define HYDRA_INT_SCCA_RX_DMA   3                 
 80 #define HYDRA_INT_SCCB_TX_DMA   4                 
 81 #define HYDRA_INT_SCCB_RX_DMA   5                 
 82 #define HYDRA_INT_SCSI          6                 
 83 #define HYDRA_INT_SCCA          7                 
 84 #define HYDRA_INT_SCCB          8                 
 85 #define HYDRA_INT_VIA           9                 
 86 #define HYDRA_INT_ADB           10                
 87 #define HYDRA_INT_ADB_NMI       11                
 88 #define HYDRA_INT_EXT1          12      /* PCI    
 89 #define HYDRA_INT_EXT2          13      /* PCI    
 90 #define HYDRA_INT_EXT3          14      /* PCI    
 91 #define HYDRA_INT_EXT4          15      /* PCI    
 92 #define HYDRA_INT_EXT5          16      /* IDE    
 93 #define HYDRA_INT_EXT6          17      /* IDE    
 94 #define HYDRA_INT_EXT7          18      /* Pow    
 95 #define HYDRA_INT_SPARE         19                
 96                                                   
 97 #endif /* __KERNEL__ */                           
 98                                                   
 99 #endif /* _ASMPPC_HYDRA_H */                      
100                                                   

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