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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-imx/cpu-imx5.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-imx/cpu-imx5.c (Version linux-6.12-rc7) and /arch/m68k/mach-imx/cpu-imx5.c (Version linux-2.6.0)


  1 // SPDX-License-Identifier: GPL-2.0-or-later        1 
  2 /*                                                
  3  * Copyright 2008-2010 Freescale Semiconductor    
  4  *                                                
  5  * This file contains the CPU initialization c    
  6  */                                               
  7                                                   
  8 #include <linux/types.h>                          
  9 #include <linux/kernel.h>                         
 10 #include <linux/init.h>                           
 11 #include <linux/module.h>                         
 12 #include <linux/io.h>                             
 13 #include <linux/of.h>                             
 14 #include <linux/of_address.h>                     
 15                                                   
 16 #include "hardware.h"                             
 17 #include "common.h"                               
 18                                                   
 19 static int mx5_cpu_rev = -1;                      
 20                                                   
 21 #define IIM_SREV 0x24                             
 22                                                   
 23 static u32 imx5_read_srev_reg(const char *comp    
 24 {                                                 
 25         void __iomem *iim_base;                   
 26         struct device_node *np;                   
 27         u32 srev;                                 
 28                                                   
 29         np = of_find_compatible_node(NULL, NUL    
 30         iim_base = of_iomap(np, 0);               
 31         of_node_put(np);                          
 32         WARN_ON(!iim_base);                       
 33                                                   
 34         srev = readl(iim_base + IIM_SREV) & 0x    
 35                                                   
 36         iounmap(iim_base);                        
 37                                                   
 38         return srev;                              
 39 }                                                 
 40                                                   
 41 static int get_mx51_srev(void)                    
 42 {                                                 
 43         u32 rev = imx5_read_srev_reg("fsl,imx5    
 44                                                   
 45         switch (rev) {                            
 46         case 0x0:                                 
 47                 return IMX_CHIP_REVISION_2_0;     
 48         case 0x10:                                
 49                 return IMX_CHIP_REVISION_3_0;     
 50         default:                                  
 51                 return IMX_CHIP_REVISION_UNKNO    
 52         }                                         
 53 }                                                 
 54                                                   
 55 /*                                                
 56  * Returns:                                       
 57  *      the silicon revision of the cpu           
 58  */                                               
 59 int mx51_revision(void)                           
 60 {                                                 
 61         if (mx5_cpu_rev == -1)                    
 62                 mx5_cpu_rev = get_mx51_srev();    
 63                                                   
 64         return mx5_cpu_rev;                       
 65 }                                                 
 66 EXPORT_SYMBOL(mx51_revision);                     
 67                                                   
 68 #ifdef CONFIG_NEON                                
 69                                                   
 70 /*                                                
 71  * All versions of the silicon before Rev. 3 h    
 72  * Dependent on link order - so the assumption    
 73  * before us.                                     
 74  */                                               
 75 int __init mx51_neon_fixup(void)                  
 76 {                                                 
 77         if (mx51_revision() < IMX_CHIP_REVISIO    
 78                         (elf_hwcap & HWCAP_NEO    
 79                 elf_hwcap &= ~HWCAP_NEON;         
 80                 pr_info("Turning off NEON supp    
 81         }                                         
 82         return 0;                                 
 83 }                                                 
 84                                                   
 85 #endif                                            
 86                                                   
 87 static int get_mx53_srev(void)                    
 88 {                                                 
 89         u32 rev = imx5_read_srev_reg("fsl,imx5    
 90                                                   
 91         switch (rev) {                            
 92         case 0x0:                                 
 93                 return IMX_CHIP_REVISION_1_0;     
 94         case 0x2:                                 
 95                 return IMX_CHIP_REVISION_2_0;     
 96         case 0x3:                                 
 97                 return IMX_CHIP_REVISION_2_1;     
 98         default:                                  
 99                 return IMX_CHIP_REVISION_UNKNO    
100         }                                         
101 }                                                 
102                                                   
103 /*                                                
104  * Returns:                                       
105  *      the silicon revision of the cpu           
106  */                                               
107 int mx53_revision(void)                           
108 {                                                 
109         if (mx5_cpu_rev == -1)                    
110                 mx5_cpu_rev = get_mx53_srev();    
111                                                   
112         return mx5_cpu_rev;                       
113 }                                                 
114 EXPORT_SYMBOL(mx53_revision);                     
115                                                   
116 #define ARM_GPC         0x4                       
117 #define DBGEN           BIT(16)                   
118                                                   
119 /*                                                
120  * This enables the DBGEN bit in ARM_GPC regis    
121  * required for accessing some performance cou    
122  * Technically it is only required while perf     
123  * keep the source code simple we just enable     
124  * when the kernel configuration allows using     
125  */                                               
126 void __init imx5_pmu_init(void)                   
127 {                                                 
128         void __iomem *tigerp_base;                
129         struct device_node *np;                   
130         u32 gpc;                                  
131                                                   
132         if (!IS_ENABLED(CONFIG_ARM_PMU))          
133                 return;                           
134                                                   
135         np = of_find_compatible_node(NULL, NUL    
136         if (!np)                                  
137                 return;                           
138                                                   
139         if (!of_property_read_bool(np, "secure    
140                 goto exit;                        
141                                                   
142         of_node_put(np);                          
143                                                   
144         np = of_find_compatible_node(NULL, NUL    
145         if (!np)                                  
146                 return;                           
147                                                   
148         tigerp_base = of_iomap(np, 0);            
149         if (!tigerp_base)                         
150                 goto exit;                        
151                                                   
152         gpc = readl_relaxed(tigerp_base + ARM_    
153         gpc |= DBGEN;                             
154         writel_relaxed(gpc, tigerp_base + ARM_    
155         iounmap(tigerp_base);                     
156 exit:                                             
157         of_node_put(np);                          
158                                                   
159 }                                                 
160                                                   

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