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

TOMOYO Linux Cross Reference
Linux/sound/soc/sof/sof-of-dev.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/sof/sof-of-dev.c (Version linux-6.12-rc7) and /sound/soc/sof/sof-of-dev.c (Version linux-5.15.169)


** Warning: Cannot open xref database.

  1 // SPDX-License-Identifier: (GPL-2.0-only OR B      1 
  2 //                                                
  3 // Copyright 2019 NXP                             
  4 //                                                
  5 // Author: Daniel Baluta <daniel.baluta@nxp.co    
  6 //                                                
  7                                                   
  8 #include <linux/firmware.h>                       
  9 #include <linux/module.h>                         
 10 #include <linux/moduleparam.h>                    
 11 #include <linux/pm_runtime.h>                     
 12 #include <sound/sof.h>                            
 13                                                   
 14 #include "sof-of-dev.h"                           
 15 #include "ops.h"                                  
 16                                                   
 17 static char *fw_path;                             
 18 module_param(fw_path, charp, 0444);               
 19 MODULE_PARM_DESC(fw_path, "alternate path for     
 20                                                   
 21 static char *tplg_path;                           
 22 module_param(tplg_path, charp, 0444);             
 23 MODULE_PARM_DESC(tplg_path, "alternate path fo    
 24                                                   
 25 const struct dev_pm_ops sof_of_pm = {             
 26         .prepare = snd_sof_prepare,               
 27         .complete = snd_sof_complete,             
 28         SET_SYSTEM_SLEEP_PM_OPS(snd_sof_suspen    
 29         SET_RUNTIME_PM_OPS(snd_sof_runtime_sus    
 30                            NULL)                  
 31 };                                                
 32 EXPORT_SYMBOL(sof_of_pm);                         
 33                                                   
 34 static void sof_of_probe_complete(struct devic    
 35 {                                                 
 36         /* allow runtime_pm */                    
 37         pm_runtime_set_autosuspend_delay(dev,     
 38         pm_runtime_use_autosuspend(dev);          
 39         pm_runtime_mark_last_busy(dev);           
 40         pm_runtime_set_active(dev);               
 41         pm_runtime_enable(dev);                   
 42 }                                                 
 43                                                   
 44 int sof_of_probe(struct platform_device *pdev)    
 45 {                                                 
 46         struct device *dev = &pdev->dev;          
 47         const struct sof_dev_desc *desc;          
 48         struct snd_sof_pdata *sof_pdata;          
 49                                                   
 50         dev_info(&pdev->dev, "DT DSP detected"    
 51                                                   
 52         sof_pdata = devm_kzalloc(dev, sizeof(*    
 53         if (!sof_pdata)                           
 54                 return -ENOMEM;                   
 55                                                   
 56         desc = device_get_match_data(dev);        
 57         if (!desc)                                
 58                 return -ENODEV;                   
 59                                                   
 60         if (!desc->ops) {                         
 61                 dev_err(dev, "error: no matchi    
 62                 return -ENODEV;                   
 63         }                                         
 64                                                   
 65         sof_pdata->desc = desc;                   
 66         sof_pdata->dev = &pdev->dev;              
 67                                                   
 68         sof_pdata->ipc_file_profile_base.ipc_t    
 69         sof_pdata->ipc_file_profile_base.fw_pa    
 70         sof_pdata->ipc_file_profile_base.tplg_    
 71                                                   
 72         /* set callback to be called on succes    
 73         sof_pdata->sof_probe_complete = sof_of    
 74                                                   
 75         /* call sof helper for DSP hardware pr    
 76         return snd_sof_device_probe(dev, sof_p    
 77 }                                                 
 78 EXPORT_SYMBOL(sof_of_probe);                      
 79                                                   
 80 void sof_of_remove(struct platform_device *pde    
 81 {                                                 
 82         pm_runtime_disable(&pdev->dev);           
 83                                                   
 84         /* call sof helper for DSP hardware re    
 85         snd_sof_device_remove(&pdev->dev);        
 86 }                                                 
 87 EXPORT_SYMBOL(sof_of_remove);                     
 88                                                   
 89 void sof_of_shutdown(struct platform_device *p    
 90 {                                                 
 91         snd_sof_device_shutdown(&pdev->dev);      
 92 }                                                 
 93 EXPORT_SYMBOL(sof_of_shutdown);                   
 94                                                   
 95 MODULE_LICENSE("Dual BSD/GPL");                   
 96 MODULE_DESCRIPTION("SOF support for OF/DT plat    
 97                                                   

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