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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-omap2/vc.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/arm/mach-omap2/vc.h (Version linux-6.12-rc7) and /arch/mips/mach-omap2/vc.h (Version linux-6.7.12)


  1 /* SPDX-License-Identifier: GPL-2.0-only */         1 
  2 /*                                                
  3  * OMAP3/4 Voltage Controller (VC) structure a    
  4  *                                                
  5  * Copyright (C) 2007, 2010 Texas Instruments,    
  6  * Rajendra Nayak <rnayak@ti.com>                 
  7  * Lesly A M <x0080970@ti.com>                    
  8  * Thara Gopinath <thara@ti.com>                  
  9  *                                                
 10  * Copyright (C) 2008, 2011 Nokia Corporation     
 11  * Kalle Jokiniemi                                
 12  * Paul Walmsley                                  
 13  */                                               
 14 #ifndef __ARCH_ARM_MACH_OMAP2_VC_H                
 15 #define __ARCH_ARM_MACH_OMAP2_VC_H                
 16                                                   
 17 #include <linux/kernel.h>                         
 18                                                   
 19 struct voltagedomain;                             
 20                                                   
 21 /**                                               
 22  * struct omap_vc_common - per-VC register/bit    
 23  * @cmd_on_mask: ON bitmask in PRM_VC_CMD_VAL*    
 24  * @valid: VALID bitmask in PRM_VC_BYPASS_VAL     
 25  * @bypass_val_reg: Offset of PRM_VC_BYPASS_VA    
 26  * @data_shift: DATA field shift in PRM_VC_BYP    
 27  * @slaveaddr_shift: SLAVEADDR field shift in     
 28  * @regaddr_shift: REGADDR field shift in PRM_    
 29  * @cmd_on_shift: ON field shift in PRM_VC_CMD    
 30  * @cmd_onlp_shift: ONLP field shift in PRM_VC    
 31  * @cmd_ret_shift: RET field shift in PRM_VC_C    
 32  * @cmd_off_shift: OFF field shift in PRM_VC_C    
 33  * @i2c_cfg_reg: I2C configuration register of    
 34  * @i2c_cfg_clear_mask: high-speed mode bit cl    
 35  * @i2c_cfg_hsen_mask: high-speed mode bit fie    
 36  * @i2c_mcode_mask: MCODE field mask for I2C c    
 37  *                                                
 38  * XXX One of cmd_on_mask and cmd_on_shift are    
 39  * XXX VALID should probably be a shift, not a    
 40  */                                               
 41 struct omap_vc_common {                           
 42         u32 cmd_on_mask;                          
 43         u32 valid;                                
 44         u8 bypass_val_reg;                        
 45         u8 data_shift;                            
 46         u8 slaveaddr_shift;                       
 47         u8 regaddr_shift;                         
 48         u8 cmd_on_shift;                          
 49         u8 cmd_onlp_shift;                        
 50         u8 cmd_ret_shift;                         
 51         u8 cmd_off_shift;                         
 52         u8 i2c_cfg_reg;                           
 53         u8 i2c_cfg_clear_mask;                    
 54         u8 i2c_cfg_hsen_mask;                     
 55         u8 i2c_mcode_mask;                        
 56 };                                                
 57                                                   
 58 /* omap_vc_channel.flags values */                
 59 #define OMAP_VC_CHANNEL_DEFAULT BIT(0)            
 60 #define OMAP_VC_CHANNEL_CFG_MUTANT BIT(1)         
 61                                                   
 62 /**                                               
 63  * struct omap_vc_channel - VC per-instance da    
 64  * @i2c_slave_addr: I2C slave address of PMIC     
 65  * @volt_reg_addr: voltage configuration regis    
 66  * @cmd_reg_addr: command configuration regist    
 67  * @setup_time: setup time (in sys_clk cycles)    
 68  * @cfg_channel: current value of VC channel c    
 69  * @i2c_high_speed: whether or not to use I2C     
 70  *                                                
 71  * @common: pointer to VC common data for this    
 72  * @smps_sa_mask: i2c slave address bitmask in    
 73  * @smps_volra_mask: VOLRA* bitmask in the PRM    
 74  * @smps_cmdra_mask: CMDRA* bitmask in the PRM    
 75  * @cmdval_reg: register for on/ret/off voltag    
 76  * @smps_sa_reg: Offset of PRM_VC_SMPS_SA reg     
 77  * @smps_volra_reg: Offset of PRM_VC_SMPS_VOL_    
 78  * @smps_cmdra_reg: Offset of PRM_VC_SMPS_CMD_    
 79  * @cfg_channel_reg: VC channel configuration     
 80  * @cfg_channel_sa_shift: bit shift for slave     
 81  * @flags: VC channel-specific flags (optional    
 82  */                                               
 83 struct omap_vc_channel {                          
 84         /* channel state */                       
 85         u16 i2c_slave_addr;                       
 86         u16 volt_reg_addr;                        
 87         u16 cmd_reg_addr;                         
 88         u8 cfg_channel;                           
 89         bool i2c_high_speed;                      
 90                                                   
 91         /* register access data */                
 92         const struct omap_vc_common *common;      
 93         u32 smps_sa_mask;                         
 94         u32 smps_volra_mask;                      
 95         u32 smps_cmdra_mask;                      
 96         u8 cmdval_reg;                            
 97         u8 smps_sa_reg;                           
 98         u8 smps_volra_reg;                        
 99         u8 smps_cmdra_reg;                        
100         u8 cfg_channel_reg;                       
101         u8 cfg_channel_sa_shift;                  
102         u8 flags;                                 
103 };                                                
104                                                   
105 extern struct omap_vc_channel omap3_vc_mpu;       
106 extern struct omap_vc_channel omap3_vc_core;      
107                                                   
108 extern struct omap_vc_channel omap4_vc_mpu;       
109 extern struct omap_vc_channel omap4_vc_iva;       
110 extern struct omap_vc_channel omap4_vc_core;      
111                                                   
112 extern struct omap_vc_param omap3_mpu_vc_data;    
113 extern struct omap_vc_param omap3_core_vc_data    
114                                                   
115 extern struct omap_vc_param omap4_mpu_vc_data;    
116 extern struct omap_vc_param omap4_iva_vc_data;    
117 extern struct omap_vc_param omap4_core_vc_data    
118                                                   
119 void omap3_vc_set_pmic_signaling(int core_next    
120 void omap4_vc_set_pmic_signaling(int core_next    
121                                                   
122 void omap_vc_init_channel(struct voltagedomain    
123 int omap_vc_pre_scale(struct voltagedomain *vo    
124                       unsigned long target_vol    
125                       u8 *target_vsel, u8 *cur    
126 void omap_vc_post_scale(struct voltagedomain *    
127                         unsigned long target_v    
128                         u8 target_vsel, u8 cur    
129 int omap_vc_bypass_scale(struct voltagedomain     
130                          unsigned long target_    
131                                                   
132 #endif                                            
133                                                   
134                                                   

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