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

TOMOYO Linux Cross Reference
Linux/sound/soc/codecs/rt715-sdca-sdw.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 /sound/soc/codecs/rt715-sdca-sdw.c (Version linux-6.12-rc7) and /sound/soc/codecs/rt715-sdca-sdw.c (Version linux-3.10.108)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 //                                                
  3 // rt715-sdca-sdw.c -- rt715 ALSA SoC audio dr    
  4 //                                                
  5 // Copyright(c) 2020 Realtek Semiconductor Cor    
  6 //                                                
  7 //                                                
  8                                                   
  9 #include <linux/delay.h>                          
 10 #include <linux/device.h>                         
 11 #include <linux/mod_devicetable.h>                
 12 #include <linux/soundwire/sdw.h>                  
 13 #include <linux/soundwire/sdw_type.h>             
 14 #include <linux/soundwire/sdw_registers.h>        
 15 #include <linux/module.h>                         
 16 #include <linux/pm_runtime.h>                     
 17 #include <linux/regmap.h>                         
 18 #include <sound/soc.h>                            
 19 #include "rt715-sdca.h"                           
 20 #include "rt715-sdca-sdw.h"                       
 21                                                   
 22 static bool rt715_sdca_readable_register(struc    
 23 {                                                 
 24         switch (reg) {                            
 25         case 0x201a ... 0x2027:                   
 26         case 0x2029 ... 0x202a:                   
 27         case 0x202d ... 0x2034:                   
 28         case 0x2200 ... 0x2204:                   
 29         case 0x2206 ... 0x2212:                   
 30         case 0x2230 ... 0x2239:                   
 31         case 0x2f5b:                              
 32         case SDW_SDCA_CTL(FUN_MIC_ARRAY, RT715    
 33                 RT715_SDCA_SMPU_TRIG_ST_CTRL,     
 34                 return true;                      
 35         default:                                  
 36                 return false;                     
 37         }                                         
 38 }                                                 
 39                                                   
 40 static bool rt715_sdca_volatile_register(struc    
 41 {                                                 
 42         switch (reg) {                            
 43         case 0x201b:                              
 44         case 0x201c:                              
 45         case 0x201d:                              
 46         case 0x201f:                              
 47         case 0x2021:                              
 48         case 0x2023:                              
 49         case 0x2230:                              
 50         case 0x202d ... 0x202f: /* BRA */         
 51         case 0x2200 ... 0x2212: /* i2c debug *    
 52         case 0x2f07:                              
 53         case 0x2f1b ... 0x2f1e:                   
 54         case 0x2f30 ... 0x2f34:                   
 55         case 0x2f50 ... 0x2f51:                   
 56         case 0x2f53 ... 0x2f59:                   
 57         case 0x2f5c ... 0x2f5f:                   
 58         case SDW_SDCA_CTL(FUN_MIC_ARRAY, RT715    
 59                 RT715_SDCA_SMPU_TRIG_ST_CTRL,     
 60                 return true;                      
 61         default:                                  
 62                 return false;                     
 63         }                                         
 64 }                                                 
 65                                                   
 66 static bool rt715_sdca_mbq_readable_register(s    
 67 {                                                 
 68         switch (reg) {                            
 69         case 0x2000000:                           
 70         case 0x200002b:                           
 71         case 0x2000036:                           
 72         case 0x2000037:                           
 73         case 0x2000039:                           
 74         case 0x2000044:                           
 75         case 0x6100000:                           
 76                 return true;                      
 77         default:                                  
 78                 return false;                     
 79         }                                         
 80 }                                                 
 81                                                   
 82 static bool rt715_sdca_mbq_volatile_register(s    
 83 {                                                 
 84         switch (reg) {                            
 85         case 0x2000000:                           
 86                 return true;                      
 87         default:                                  
 88                 return false;                     
 89         }                                         
 90 }                                                 
 91                                                   
 92 static const struct regmap_config rt715_sdca_r    
 93         .reg_bits = 32,                           
 94         .val_bits = 8,                            
 95         .readable_reg = rt715_sdca_readable_re    
 96         .volatile_reg = rt715_sdca_volatile_re    
 97         .max_register = 0x43ffffff,               
 98         .reg_defaults = rt715_reg_defaults_sdc    
 99         .num_reg_defaults = ARRAY_SIZE(rt715_r    
100         .cache_type = REGCACHE_MAPLE,             
101         .use_single_read = true,                  
102         .use_single_write = true,                 
103 };                                                
104                                                   
105 static const struct regmap_config rt715_sdca_m    
106         .name = "sdw-mbq",                        
107         .reg_bits = 32,                           
108         .val_bits = 16,                           
109         .readable_reg = rt715_sdca_mbq_readabl    
110         .volatile_reg = rt715_sdca_mbq_volatil    
111         .max_register = 0x43ffffff,               
112         .reg_defaults = rt715_mbq_reg_defaults    
113         .num_reg_defaults = ARRAY_SIZE(rt715_m    
114         .cache_type = REGCACHE_MAPLE,             
115         .use_single_read = true,                  
116         .use_single_write = true,                 
117 };                                                
118                                                   
119 static int rt715_sdca_update_status(struct sdw    
120                                 enum sdw_slave    
121 {                                                 
122         struct rt715_sdca_priv *rt715 = dev_ge    
123                                                   
124         /*                                        
125          * Perform initialization only if slav    
126          * hw_init flag is false                  
127          */                                       
128         if (rt715->hw_init || status != SDW_SL    
129                 return 0;                         
130                                                   
131         /* perform I/O transfers required for     
132         return rt715_sdca_io_init(&slave->dev,    
133 }                                                 
134                                                   
135 static int rt715_sdca_read_prop(struct sdw_sla    
136 {                                                 
137         struct sdw_slave_prop *prop = &slave->    
138         int nval, i;                              
139         u32 bit;                                  
140         unsigned long addr;                       
141         struct sdw_dpn_prop *dpn;                 
142                                                   
143         prop->paging_support = true;              
144                                                   
145         /* first we need to allocate memory fo    
146         prop->source_ports = 0x50;/* BITMAP: 0    
147         prop->sink_ports = 0x0; /* BITMAP:  00    
148                                                   
149         nval = hweight32(prop->source_ports);     
150         prop->src_dpn_prop = devm_kcalloc(&sla    
151                                         sizeof    
152                                         GFP_KE    
153         if (!prop->src_dpn_prop)                  
154                 return -ENOMEM;                   
155                                                   
156         dpn = prop->src_dpn_prop;                 
157         i = 0;                                    
158         addr = prop->source_ports;                
159         for_each_set_bit(bit, &addr, 32) {        
160                 dpn[i].num = bit;                 
161                 dpn[i].simple_ch_prep_sm = tru    
162                 dpn[i].ch_prep_timeout = 10;      
163                 i++;                              
164         }                                         
165                                                   
166         /* set the timeout values */              
167         prop->clk_stop_timeout = 200;             
168                                                   
169         return 0;                                 
170 }                                                 
171                                                   
172 static const struct sdw_slave_ops rt715_sdca_s    
173         .read_prop = rt715_sdca_read_prop,        
174         .update_status = rt715_sdca_update_sta    
175 };                                                
176                                                   
177 static int rt715_sdca_sdw_probe(struct sdw_sla    
178                            const struct sdw_de    
179 {                                                 
180         struct regmap *mbq_regmap, *regmap;       
181                                                   
182         /* Regmap Initialization */               
183         mbq_regmap = devm_regmap_init_sdw_mbq(    
184         if (IS_ERR(mbq_regmap))                   
185                 return PTR_ERR(mbq_regmap);       
186                                                   
187         regmap = devm_regmap_init_sdw(slave, &    
188         if (IS_ERR(regmap))                       
189                 return PTR_ERR(regmap);           
190                                                   
191         return rt715_sdca_init(&slave->dev, mb    
192 }                                                 
193                                                   
194 static int rt715_sdca_sdw_remove(struct sdw_sl    
195 {                                                 
196         pm_runtime_disable(&slave->dev);          
197                                                   
198         return 0;                                 
199 }                                                 
200                                                   
201 static const struct sdw_device_id rt715_sdca_i    
202         SDW_SLAVE_ENTRY_EXT(0x025d, 0x715, 0x3    
203         SDW_SLAVE_ENTRY_EXT(0x025d, 0x714, 0x3    
204         {},                                       
205 };                                                
206 MODULE_DEVICE_TABLE(sdw, rt715_sdca_id);          
207                                                   
208 static int __maybe_unused rt715_dev_suspend(st    
209 {                                                 
210         struct rt715_sdca_priv *rt715 = dev_ge    
211                                                   
212         if (!rt715->hw_init)                      
213                 return 0;                         
214                                                   
215         regcache_cache_only(rt715->regmap, tru    
216         regcache_mark_dirty(rt715->regmap);       
217         regcache_cache_only(rt715->mbq_regmap,    
218         regcache_mark_dirty(rt715->mbq_regmap)    
219                                                   
220         return 0;                                 
221 }                                                 
222                                                   
223 #define RT715_PROBE_TIMEOUT 5000                  
224                                                   
225 static int __maybe_unused rt715_dev_resume(str    
226 {                                                 
227         struct sdw_slave *slave = dev_to_sdw_d    
228         struct rt715_sdca_priv *rt715 = dev_ge    
229         unsigned long time;                       
230                                                   
231         if (!rt715->first_hw_init)                
232                 return 0;                         
233                                                   
234         if (!slave->unattach_request)             
235                 goto regmap_sync;                 
236                                                   
237         time = wait_for_completion_timeout(&sl    
238                                            mse    
239         if (!time) {                              
240                 dev_err(&slave->dev, "%s: Init    
241                 sdw_show_ping_status(slave->bu    
242                                                   
243                 return -ETIMEDOUT;                
244         }                                         
245                                                   
246 regmap_sync:                                      
247         slave->unattach_request = 0;              
248         regcache_cache_only(rt715->regmap, fal    
249         regcache_sync_region(rt715->regmap,       
250                 SDW_SDCA_CTL(FUN_JACK_CODEC, R    
251                         CH_00),                   
252                 SDW_SDCA_CTL(FUN_MIC_ARRAY, RT    
253                         RT715_SDCA_SMPU_TRIG_S    
254         regcache_cache_only(rt715->mbq_regmap,    
255         regcache_sync_region(rt715->mbq_regmap    
256         regcache_sync_region(rt715->mbq_regmap    
257                 SDW_SDCA_CTL(FUN_JACK_CODEC, R    
258                         CH_00),                   
259                 SDW_SDCA_CTL(FUN_MIC_ARRAY, RT    
260                         RT715_SDCA_SMPU_TRIG_S    
261                                                   
262         return 0;                                 
263 }                                                 
264                                                   
265 static const struct dev_pm_ops rt715_pm = {       
266         SET_SYSTEM_SLEEP_PM_OPS(rt715_dev_susp    
267         SET_RUNTIME_PM_OPS(rt715_dev_suspend,     
268 };                                                
269                                                   
270 static struct sdw_driver rt715_sdw_driver = {     
271         .driver = {                               
272                 .name = "rt715-sdca",             
273                 .pm = &rt715_pm,                  
274         },                                        
275         .probe = rt715_sdca_sdw_probe,            
276         .remove = rt715_sdca_sdw_remove,          
277         .ops = &rt715_sdca_slave_ops,             
278         .id_table = rt715_sdca_id,                
279 };                                                
280 module_sdw_driver(rt715_sdw_driver);              
281                                                   
282 MODULE_DESCRIPTION("ASoC RT715 driver SDW SDCA    
283 MODULE_AUTHOR("Jack Yu <jack.yu@realtek.com>")    
284 MODULE_LICENSE("GPL v2");                         
285                                                   

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