tgl.c (f8bade6c9a6213c2c5ba6e5bf32415ecab6e41e5) | tgl.c (22aa9e021ad1ee7ce640270e75f4bdccff65d287) |
---|---|
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// Copyright(c) 2020 Intel Corporation. All rights reserved. 4// 5// Authors: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> 6// 7 8/* --- 11 unchanged lines hidden (view full) --- 20 {"dsp", HDA_DSP_BAR, 0, 0x10000, SOF_DEBUGFS_ACCESS_ALWAYS}, 21}; 22 23/* Tigerlake ops */ 24const struct snd_sof_dsp_ops sof_tgl_ops = { 25 /* probe/remove/shutdown */ 26 .probe = hda_dsp_probe, 27 .remove = hda_dsp_remove, | 1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// Copyright(c) 2020 Intel Corporation. All rights reserved. 4// 5// Authors: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> 6// 7 8/* --- 11 unchanged lines hidden (view full) --- 20 {"dsp", HDA_DSP_BAR, 0, 0x10000, SOF_DEBUGFS_ACCESS_ALWAYS}, 21}; 22 23/* Tigerlake ops */ 24const struct snd_sof_dsp_ops sof_tgl_ops = { 25 /* probe/remove/shutdown */ 26 .probe = hda_dsp_probe, 27 .remove = hda_dsp_remove, |
28 .shutdown = hda_dsp_remove, | 28 .shutdown = hda_dsp_shutdown, |
29 30 /* Register IO */ 31 .write = sof_io_write, 32 .read = sof_io_read, 33 .write64 = sof_io_write64, 34 .read64 = sof_io_read64, 35 36 /* Block IO */ --- 137 unchanged lines hidden --- | 29 30 /* Register IO */ 31 .write = sof_io_write, 32 .read = sof_io_read, 33 .write64 = sof_io_write64, 34 .read64 = sof_io_read64, 35 36 /* Block IO */ --- 137 unchanged lines hidden --- |