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

TOMOYO Linux Cross Reference
Linux/arch/sparc/kernel/apc.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/apc.c (Version linux-6.12-rc7) and /arch/i386/kernel/apc.c (Version linux-2.4.37.11)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /* apc - Driver implementation for power manag    
  3  * of Aurora Personality Chip (APC) on SPARCst    
  4  * derivatives.                                   
  5  *                                                
  6  * Copyright (c) 2002 Eric Brower (ebrower@usa    
  7  */                                               
  8                                                   
  9 #include <linux/kernel.h>                         
 10 #include <linux/fs.h>                             
 11 #include <linux/errno.h>                          
 12 #include <linux/init.h>                           
 13 #include <linux/miscdevice.h>                     
 14 #include <linux/pm.h>                             
 15 #include <linux/of.h>                             
 16 #include <linux/platform_device.h>                
 17 #include <linux/module.h>                         
 18                                                   
 19 #include <asm/io.h>                               
 20 #include <asm/oplib.h>                            
 21 #include <linux/uaccess.h>                        
 22 #include <asm/auxio.h>                            
 23 #include <asm/apc.h>                              
 24 #include <asm/processor.h>                        
 25                                                   
 26 /* Debugging                                      
 27  *                                                
 28  * #define APC_DEBUG_LED                          
 29  */                                               
 30                                                   
 31 #define APC_MINOR       MISC_DYNAMIC_MINOR        
 32 #define APC_OBPNAME     "power-management"        
 33 #define APC_DEVNAME "apc"                         
 34                                                   
 35 static u8 __iomem *regs;                          
 36 static int apc_no_idle = 0;                       
 37                                                   
 38 #define apc_readb(offs)         (sbus_readb(re    
 39 #define apc_writeb(val, offs)   (sbus_writeb(v    
 40                                                   
 41 /* Specify "apc=noidle" on the kernel command     
 42  * disable APC CPU standby support.  Certain p    
 43  * systems (SPARCstation-Fox) do not play well    
 44  * CPU idle, so disable this if your system ha    
 45  * crashes randomly.                              
 46  */                                               
 47 static int __init apc_setup(char *str)            
 48 {                                                 
 49         if(!strncmp(str, "noidle", strlen("noi    
 50                 apc_no_idle = 1;                  
 51                 return 1;                         
 52         }                                         
 53         return 0;                                 
 54 }                                                 
 55 __setup("apc=", apc_setup);                       
 56                                                   
 57 /*                                                
 58  * CPU idle callback function                     
 59  * See .../arch/sparc/kernel/process.c            
 60  */                                               
 61 static void apc_swift_idle(void)                  
 62 {                                                 
 63 #ifdef APC_DEBUG_LED                              
 64         set_auxio(0x00, AUXIO_LED);               
 65 #endif                                            
 66                                                   
 67         apc_writeb(apc_readb(APC_IDLE_REG) | A    
 68                                                   
 69 #ifdef APC_DEBUG_LED                              
 70         set_auxio(AUXIO_LED, 0x00);               
 71 #endif                                            
 72 }                                                 
 73                                                   
 74 static inline void apc_free(struct platform_de    
 75 {                                                 
 76         of_iounmap(&op->resource[0], regs, res    
 77 }                                                 
 78                                                   
 79 static int apc_open(struct inode *inode, struc    
 80 {                                                 
 81         return 0;                                 
 82 }                                                 
 83                                                   
 84 static int apc_release(struct inode *inode, st    
 85 {                                                 
 86         return 0;                                 
 87 }                                                 
 88                                                   
 89 static long apc_ioctl(struct file *f, unsigned    
 90 {                                                 
 91         __u8 inarg, __user *arg = (__u8 __user    
 92                                                   
 93         switch (cmd) {                            
 94         case APCIOCGFANCTL:                       
 95                 if (put_user(apc_readb(APC_FAN    
 96                         return -EFAULT;           
 97                 break;                            
 98                                                   
 99         case APCIOCGCPWR:                         
100                 if (put_user(apc_readb(APC_CPO    
101                         return -EFAULT;           
102                 break;                            
103                                                   
104         case APCIOCGBPORT:                        
105                 if (put_user(apc_readb(APC_BPO    
106                         return -EFAULT;           
107                 break;                            
108                                                   
109         case APCIOCSFANCTL:                       
110                 if (get_user(inarg, arg))         
111                         return -EFAULT;           
112                 apc_writeb(inarg & APC_REGMASK    
113                 break;                            
114                                                   
115         case APCIOCSCPWR:                         
116                 if (get_user(inarg, arg))         
117                         return -EFAULT;           
118                 apc_writeb(inarg & APC_REGMASK    
119                 break;                            
120                                                   
121         case APCIOCSBPORT:                        
122                 if (get_user(inarg, arg))         
123                         return -EFAULT;           
124                 apc_writeb(inarg & APC_BPMASK,    
125                 break;                            
126                                                   
127         default:                                  
128                 return -EINVAL;                   
129         }                                         
130                                                   
131         return 0;                                 
132 }                                                 
133                                                   
134 static const struct file_operations apc_fops =    
135         .unlocked_ioctl =       apc_ioctl,        
136         .open =                 apc_open,         
137         .release =              apc_release,      
138         .llseek =               noop_llseek,      
139 };                                                
140                                                   
141 static struct miscdevice apc_miscdev = { APC_M    
142                                                   
143 static int apc_probe(struct platform_device *o    
144 {                                                 
145         int err;                                  
146                                                   
147         regs = of_ioremap(&op->resource[0], 0,    
148                           resource_size(&op->r    
149         if (!regs) {                              
150                 printk(KERN_ERR "%s: unable to    
151                 return -ENODEV;                   
152         }                                         
153                                                   
154         err = misc_register(&apc_miscdev);        
155         if (err) {                                
156                 printk(KERN_ERR "%s: unable to    
157                 apc_free(op);                     
158                 return -ENODEV;                   
159         }                                         
160                                                   
161         /* Assign power management IDLE handle    
162         if (!apc_no_idle)                         
163                 sparc_idle = apc_swift_idle;      
164                                                   
165         printk(KERN_INFO "%s: power management    
166                APC_DEVNAME, apc_no_idle ? " (C    
167                                                   
168         return 0;                                 
169 }                                                 
170                                                   
171 static const struct of_device_id apc_match[] =    
172         {                                         
173                 .name = APC_OBPNAME,              
174         },                                        
175         {},                                       
176 };                                                
177 MODULE_DEVICE_TABLE(of, apc_match);               
178                                                   
179 static struct platform_driver apc_driver = {      
180         .driver = {                               
181                 .name = "apc",                    
182                 .of_match_table = apc_match,      
183         },                                        
184         .probe          = apc_probe,              
185 };                                                
186                                                   
187 static int __init apc_init(void)                  
188 {                                                 
189         return platform_driver_register(&apc_d    
190 }                                                 
191                                                   
192 /* This driver is not critical to the boot pro    
193  * and is easiest to ioremap when SBus is alre    
194  * initialized, so we install ourselves thusly    
195  */                                               
196 __initcall(apc_init);                             
197                                                   

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