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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-omap2/clockdomains2420_data.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-omap2/clockdomains2420_data.c (Version linux-6.12-rc7) and /arch/i386/mach-omap2/clockdomains2420_data.c (Version linux-5.17.15)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  * OMAP2420 clockdomains                          
  4  *                                                
  5  * Copyright (C) 2008-2011 Texas Instruments,     
  6  * Copyright (C) 2008-2010 Nokia Corporation      
  7  *                                                
  8  * Paul Walmsley, Jouni Högander                 
  9  *                                                
 10  * This file contains clockdomains and clockdo    
 11  * for OMAP2420 chips.  Some notes:               
 12  *                                                
 13  * A useful validation rule for struct clockdo    
 14  * referenced by a wkdep_srcs must have a dep_    
 15  * wkdep_srcs are really just software-control    
 16  * Non-software-controllable dependencies do e    
 17  * encoded below (yet).                           
 18  *                                                
 19  * 24xx does not support programmable sleep de    
 20  *                                                
 21  * The overly-specific dep_bit names are due t    
 22  * with CM_FCLKEN_{DSP,IVA2}.  The DSP/IVA2 PM    
 23  * value are the same for all powerdomains: 2     
 24  *                                                
 25  * XXX should dep_bit be a mask, so we can tes    
 26  * sanity check?                                  
 27  * XXX encode hardware fixed wakeup dependenci    
 28  */                                               
 29                                                   
 30 /*                                                
 31  * To-Do List                                     
 32  * -> Port the Sleep/Wakeup dependencies for t    
 33  *    from the Power domain framework             
 34  */                                               
 35                                                   
 36 #include <linux/kernel.h>                         
 37 #include <linux/io.h>                             
 38                                                   
 39 #include "soc.h"                                  
 40 #include "clockdomain.h"                          
 41 #include "prm2xxx_3xxx.h"                         
 42 #include "cm2xxx_3xxx.h"                          
 43 #include "cm-regbits-24xx.h"                      
 44 #include "prm-regbits-24xx.h"                     
 45                                                   
 46 /*                                                
 47  * Clockdomain dependencies for wkdeps            
 48  *                                                
 49  * XXX Hardware dependencies (e.g., dependenci    
 50  * changed in software) are not included here     
 51  */                                               
 52                                                   
 53 /* Wakeup dependency source arrays */             
 54                                                   
 55 /* 2420-specific possible wakeup dependencies     
 56                                                   
 57 /* 2420 PM_WKDEP_MPU: CORE, DSP, WKUP */          
 58 static struct clkdm_dep mpu_2420_wkdeps[] = {     
 59         { .clkdm_name = "core_l3_clkdm" },        
 60         { .clkdm_name = "core_l4_clkdm" },        
 61         { .clkdm_name = "dsp_clkdm" },            
 62         { .clkdm_name = "wkup_clkdm" },           
 63         { NULL },                                 
 64 };                                                
 65                                                   
 66 /* 2420 PM_WKDEP_CORE: DSP, GFX, MPU, WKUP */     
 67 static struct clkdm_dep core_2420_wkdeps[] = {    
 68         { .clkdm_name = "dsp_clkdm" },            
 69         { .clkdm_name = "gfx_clkdm" },            
 70         { .clkdm_name = "mpu_clkdm" },            
 71         { .clkdm_name = "wkup_clkdm" },           
 72         { NULL },                                 
 73 };                                                
 74                                                   
 75 /*                                                
 76  * 2420-only clockdomains                         
 77  */                                               
 78                                                   
 79 static struct clockdomain mpu_2420_clkdm = {      
 80         .name           = "mpu_clkdm",            
 81         .pwrdm          = { .name = "mpu_pwrdm    
 82         .flags          = CLKDM_CAN_HWSUP,        
 83         .wkdep_srcs     = mpu_2420_wkdeps,        
 84         .clktrctrl_mask = OMAP24XX_AUTOSTATE_M    
 85 };                                                
 86                                                   
 87 static struct clockdomain iva1_2420_clkdm = {     
 88         .name           = "iva1_clkdm",           
 89         .pwrdm          = { .name = "dsp_pwrdm    
 90         .flags          = CLKDM_CAN_HWSUP_SWSU    
 91         .dep_bit        = OMAP24XX_PM_WKDEP_MP    
 92         .wkdep_srcs     = dsp_24xx_wkdeps,        
 93         .clktrctrl_mask = OMAP2420_AUTOSTATE_I    
 94 };                                                
 95                                                   
 96 static struct clockdomain dsp_2420_clkdm = {      
 97         .name           = "dsp_clkdm",            
 98         .pwrdm          = { .name = "dsp_pwrdm    
 99         .flags          = CLKDM_CAN_HWSUP_SWSU    
100         .clktrctrl_mask = OMAP24XX_AUTOSTATE_D    
101 };                                                
102                                                   
103 static struct clockdomain gfx_2420_clkdm = {      
104         .name           = "gfx_clkdm",            
105         .pwrdm          = { .name = "gfx_pwrdm    
106         .flags          = CLKDM_CAN_HWSUP_SWSU    
107         .wkdep_srcs     = gfx_24xx_wkdeps,        
108         .clktrctrl_mask = OMAP24XX_AUTOSTATE_G    
109 };                                                
110                                                   
111 static struct clockdomain core_l3_2420_clkdm =    
112         .name           = "core_l3_clkdm",        
113         .pwrdm          = { .name = "core_pwrd    
114         .flags          = CLKDM_CAN_HWSUP,        
115         .wkdep_srcs     = core_2420_wkdeps,       
116         .clktrctrl_mask = OMAP24XX_AUTOSTATE_L    
117 };                                                
118                                                   
119 static struct clockdomain core_l4_2420_clkdm =    
120         .name           = "core_l4_clkdm",        
121         .pwrdm          = { .name = "core_pwrd    
122         .flags          = CLKDM_CAN_HWSUP,        
123         .wkdep_srcs     = core_2420_wkdeps,       
124         .clktrctrl_mask = OMAP24XX_AUTOSTATE_L    
125 };                                                
126                                                   
127 static struct clockdomain dss_2420_clkdm = {      
128         .name           = "dss_clkdm",            
129         .pwrdm          = { .name = "core_pwrd    
130         .flags          = CLKDM_CAN_HWSUP,        
131         .clktrctrl_mask = OMAP24XX_AUTOSTATE_D    
132 };                                                
133                                                   
134 static struct clockdomain *clockdomains_omap24    
135         &wkup_common_clkdm,                       
136         &mpu_2420_clkdm,                          
137         &iva1_2420_clkdm,                         
138         &dsp_2420_clkdm,                          
139         &gfx_2420_clkdm,                          
140         &core_l3_2420_clkdm,                      
141         &core_l4_2420_clkdm,                      
142         &dss_2420_clkdm,                          
143         NULL,                                     
144 };                                                
145                                                   
146 void __init omap242x_clockdomains_init(void)      
147 {                                                 
148         if (!cpu_is_omap242x())                   
149                 return;                           
150                                                   
151         clkdm_register_platform_funcs(&omap2_c    
152         clkdm_register_clkdms(clockdomains_oma    
153         clkdm_complete_init();                    
154 }                                                 
155                                                   

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