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

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


  1 // SPDX-License-Identifier: (GPL-2.0-only OR B !!   1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
  2 //                                                  2 //
  3 // This file is provided under a dual BSD/GPLv      3 // This file is provided under a dual BSD/GPLv2 license.  When using or
  4 // redistributing this file, you may do so und      4 // redistributing this file, you may do so under either license.
  5 //                                                  5 //
  6 // Copyright(c) 2018 Intel Corporation         !!   6 // Copyright(c) 2018 Intel Corporation. All rights reserved.
  7 //                                                  7 //
  8 // Author: Liam Girdwood <liam.r.girdwood@linu      8 // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
  9 //                                                  9 //
 10                                                    10 
 11 #include <linux/pci.h>                             11 #include <linux/pci.h>
 12 #include "ops.h"                                   12 #include "ops.h"
 13                                                    13 
 14 static                                             14 static
 15 bool snd_sof_pci_update_bits_unlocked(struct s     15 bool snd_sof_pci_update_bits_unlocked(struct snd_sof_dev *sdev, u32 offset,
 16                                       u32 mask     16                                       u32 mask, u32 value)
 17 {                                                  17 {
 18         struct pci_dev *pci = to_pci_dev(sdev-     18         struct pci_dev *pci = to_pci_dev(sdev->dev);
 19         unsigned int old, new;                     19         unsigned int old, new;
 20         u32 ret = 0;                               20         u32 ret = 0;
 21                                                    21 
 22         pci_read_config_dword(pci, offset, &re     22         pci_read_config_dword(pci, offset, &ret);
 23         old = ret;                                 23         old = ret;
 24         dev_dbg(sdev->dev, "Debug PCIR: %8.8x      24         dev_dbg(sdev->dev, "Debug PCIR: %8.8x at  %8.8x\n", old & mask, offset);
 25                                                    25 
 26         new = (old & ~mask) | (value & mask);      26         new = (old & ~mask) | (value & mask);
 27                                                    27 
 28         if (old == new)                            28         if (old == new)
 29                 return false;                      29                 return false;
 30                                                    30 
 31         pci_write_config_dword(pci, offset, ne     31         pci_write_config_dword(pci, offset, new);
 32         dev_dbg(sdev->dev, "Debug PCIW: %8.8x      32         dev_dbg(sdev->dev, "Debug PCIW: %8.8x at  %8.8x\n", value,
 33                 offset);                           33                 offset);
 34                                                    34 
 35         return true;                               35         return true;
 36 }                                                  36 }
 37                                                    37 
 38 bool snd_sof_pci_update_bits(struct snd_sof_de     38 bool snd_sof_pci_update_bits(struct snd_sof_dev *sdev, u32 offset,
 39                              u32 mask, u32 val     39                              u32 mask, u32 value)
 40 {                                                  40 {
 41         unsigned long flags;                       41         unsigned long flags;
 42         bool change;                               42         bool change;
 43                                                    43 
 44         spin_lock_irqsave(&sdev->hw_lock, flag     44         spin_lock_irqsave(&sdev->hw_lock, flags);
 45         change = snd_sof_pci_update_bits_unloc     45         change = snd_sof_pci_update_bits_unlocked(sdev, offset, mask, value);
 46         spin_unlock_irqrestore(&sdev->hw_lock,     46         spin_unlock_irqrestore(&sdev->hw_lock, flags);
 47         return change;                             47         return change;
 48 }                                                  48 }
 49 EXPORT_SYMBOL(snd_sof_pci_update_bits);            49 EXPORT_SYMBOL(snd_sof_pci_update_bits);
 50                                                    50 
 51 bool snd_sof_dsp_update_bits_unlocked(struct s     51 bool snd_sof_dsp_update_bits_unlocked(struct snd_sof_dev *sdev, u32 bar,
 52                                       u32 offs     52                                       u32 offset, u32 mask, u32 value)
 53 {                                                  53 {
 54         unsigned int old, new;                     54         unsigned int old, new;
 55         u32 ret;                                   55         u32 ret;
 56                                                    56 
 57         ret = snd_sof_dsp_read(sdev, bar, offs     57         ret = snd_sof_dsp_read(sdev, bar, offset);
 58                                                    58 
 59         old = ret;                                 59         old = ret;
 60         new = (old & ~mask) | (value & mask);      60         new = (old & ~mask) | (value & mask);
 61                                                    61 
 62         if (old == new)                            62         if (old == new)
 63                 return false;                      63                 return false;
 64                                                    64 
 65         snd_sof_dsp_write(sdev, bar, offset, n     65         snd_sof_dsp_write(sdev, bar, offset, new);
 66                                                    66 
 67         return true;                               67         return true;
 68 }                                                  68 }
 69 EXPORT_SYMBOL(snd_sof_dsp_update_bits_unlocked     69 EXPORT_SYMBOL(snd_sof_dsp_update_bits_unlocked);
 70                                                    70 
 71 bool snd_sof_dsp_update_bits64_unlocked(struct     71 bool snd_sof_dsp_update_bits64_unlocked(struct snd_sof_dev *sdev, u32 bar,
 72                                         u32 of     72                                         u32 offset, u64 mask, u64 value)
 73 {                                                  73 {
 74         u64 old, new;                              74         u64 old, new;
 75                                                    75 
 76         old = snd_sof_dsp_read64(sdev, bar, of     76         old = snd_sof_dsp_read64(sdev, bar, offset);
 77                                                    77 
 78         new = (old & ~mask) | (value & mask);      78         new = (old & ~mask) | (value & mask);
 79                                                    79 
 80         if (old == new)                            80         if (old == new)
 81                 return false;                      81                 return false;
 82                                                    82 
 83         snd_sof_dsp_write64(sdev, bar, offset,     83         snd_sof_dsp_write64(sdev, bar, offset, new);
 84                                                    84 
 85         return true;                               85         return true;
 86 }                                                  86 }
 87 EXPORT_SYMBOL(snd_sof_dsp_update_bits64_unlock     87 EXPORT_SYMBOL(snd_sof_dsp_update_bits64_unlocked);
 88                                                    88 
 89 /* This is for registers bits with attribute R     89 /* This is for registers bits with attribute RWC */
 90 bool snd_sof_dsp_update_bits(struct snd_sof_de     90 bool snd_sof_dsp_update_bits(struct snd_sof_dev *sdev, u32 bar, u32 offset,
 91                              u32 mask, u32 val     91                              u32 mask, u32 value)
 92 {                                                  92 {
 93         unsigned long flags;                       93         unsigned long flags;
 94         bool change;                               94         bool change;
 95                                                    95 
 96         spin_lock_irqsave(&sdev->hw_lock, flag     96         spin_lock_irqsave(&sdev->hw_lock, flags);
 97         change = snd_sof_dsp_update_bits_unloc     97         change = snd_sof_dsp_update_bits_unlocked(sdev, bar, offset, mask,
 98                                                    98                                                   value);
 99         spin_unlock_irqrestore(&sdev->hw_lock,     99         spin_unlock_irqrestore(&sdev->hw_lock, flags);
100         return change;                            100         return change;
101 }                                                 101 }
102 EXPORT_SYMBOL(snd_sof_dsp_update_bits);           102 EXPORT_SYMBOL(snd_sof_dsp_update_bits);
103                                                   103 
104 bool snd_sof_dsp_update_bits64(struct snd_sof_    104 bool snd_sof_dsp_update_bits64(struct snd_sof_dev *sdev, u32 bar, u32 offset,
105                                u64 mask, u64 v    105                                u64 mask, u64 value)
106 {                                                 106 {
107         unsigned long flags;                      107         unsigned long flags;
108         bool change;                              108         bool change;
109                                                   109 
110         spin_lock_irqsave(&sdev->hw_lock, flag    110         spin_lock_irqsave(&sdev->hw_lock, flags);
111         change = snd_sof_dsp_update_bits64_unl    111         change = snd_sof_dsp_update_bits64_unlocked(sdev, bar, offset, mask,
112                                                   112                                                     value);
113         spin_unlock_irqrestore(&sdev->hw_lock,    113         spin_unlock_irqrestore(&sdev->hw_lock, flags);
114         return change;                            114         return change;
115 }                                                 115 }
116 EXPORT_SYMBOL(snd_sof_dsp_update_bits64);         116 EXPORT_SYMBOL(snd_sof_dsp_update_bits64);
117                                                   117 
118 static                                            118 static
119 void snd_sof_dsp_update_bits_forced_unlocked(s    119 void snd_sof_dsp_update_bits_forced_unlocked(struct snd_sof_dev *sdev, u32 bar,
120                                              u    120                                              u32 offset, u32 mask, u32 value)
121 {                                                 121 {
122         unsigned int old, new;                    122         unsigned int old, new;
123         u32 ret;                                  123         u32 ret;
124                                                   124 
125         ret = snd_sof_dsp_read(sdev, bar, offs    125         ret = snd_sof_dsp_read(sdev, bar, offset);
126                                                   126 
127         old = ret;                                127         old = ret;
128         new = (old & ~mask) | (value & mask);     128         new = (old & ~mask) | (value & mask);
129                                                   129 
130         snd_sof_dsp_write(sdev, bar, offset, n    130         snd_sof_dsp_write(sdev, bar, offset, new);
131 }                                                 131 }
132                                                   132 
133 /* This is for registers bits with attribute R    133 /* This is for registers bits with attribute RWC */
134 void snd_sof_dsp_update_bits_forced(struct snd    134 void snd_sof_dsp_update_bits_forced(struct snd_sof_dev *sdev, u32 bar,
135                                     u32 offset    135                                     u32 offset, u32 mask, u32 value)
136 {                                                 136 {
137         unsigned long flags;                      137         unsigned long flags;
138                                                   138 
139         spin_lock_irqsave(&sdev->hw_lock, flag    139         spin_lock_irqsave(&sdev->hw_lock, flags);
140         snd_sof_dsp_update_bits_forced_unlocke    140         snd_sof_dsp_update_bits_forced_unlocked(sdev, bar, offset, mask, value);
141         spin_unlock_irqrestore(&sdev->hw_lock,    141         spin_unlock_irqrestore(&sdev->hw_lock, flags);
142 }                                                 142 }
143 EXPORT_SYMBOL(snd_sof_dsp_update_bits_forced);    143 EXPORT_SYMBOL(snd_sof_dsp_update_bits_forced);
144                                                   144 
145 /**                                            !! 145 void snd_sof_dsp_panic(struct snd_sof_dev *sdev, u32 offset)
146  * snd_sof_dsp_panic - handle a received DSP p << 
147  * @sdev: Pointer to the device's sdev         << 
148  * @offset: offset of panic information        << 
149  * @non_recoverable: the panic is fatal, no re << 
150  */                                            << 
151 void snd_sof_dsp_panic(struct snd_sof_dev *sde << 
152 {                                                 146 {
                                                   >> 147         dev_err(sdev->dev, "error : DSP panic!\n");
                                                   >> 148 
153         /*                                        149         /*
154          * if DSP is not ready and the dsp_oop !! 150          * check if DSP is not ready and did not set the dsp_oops_offset.
155          * offset from the panic message.      !! 151          * if the dsp_oops_offset is not set, set it from the panic message.
                                                   >> 152          * Also add a check to memory window setting with panic message.
156          */                                       153          */
157         if (!sdev->dsp_oops_offset)               154         if (!sdev->dsp_oops_offset)
158                 sdev->dsp_oops_offset = offset    155                 sdev->dsp_oops_offset = offset;
                                                   >> 156         else
                                                   >> 157                 dev_dbg(sdev->dev, "panic: dsp_oops_offset %zu offset %d\n",
                                                   >> 158                         sdev->dsp_oops_offset, offset);
159                                                   159 
160         /*                                     !! 160         snd_sof_dsp_dbg_dump(sdev, SOF_DBG_REGS | SOF_DBG_MBOX);
161          * Print warning if the offset from th !! 161         snd_sof_trace_notify_for_error(sdev);
162          * dsp_oops_offset                     << 
163          */                                    << 
164         if (sdev->dsp_oops_offset != offset)   << 
165                 dev_warn(sdev->dev,            << 
166                          "%s: dsp_oops_offset  << 
167                          __func__, sdev->dsp_o << 
168                                                << 
169         /*                                     << 
170          * Set the fw_state to crashed only in << 
171          * event.                              << 
172          * Use different message within the sn << 
173          * the non_recoverable flag.           << 
174          */                                    << 
175         sdev->dbg_dump_printed = false;        << 
176         if (non_recoverable) {                 << 
177                 snd_sof_dsp_dbg_dump(sdev, "DS << 
178                                      SOF_DBG_D << 
179                 sof_set_fw_state(sdev, SOF_FW_ << 
180                 sof_fw_trace_fw_crashed(sdev); << 
181         } else {                               << 
182                 snd_sof_dsp_dbg_dump(sdev,     << 
183                                      "DSP pani << 
184                                      SOF_DBG_D << 
185         }                                      << 
186 }                                                 162 }
187 EXPORT_SYMBOL(snd_sof_dsp_panic);                 163 EXPORT_SYMBOL(snd_sof_dsp_panic);
188                                                   164 

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