Merge branch 'for-linus' into for-next
Back-merge the 5.1 devel branch for the further HD-audio development. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
commit
99fff44fe3
|
@ -802,8 +802,13 @@ struct snd_soc_component_driver {
|
|||
int probe_order;
|
||||
int remove_order;
|
||||
|
||||
/* signal if the module handling the component cannot be removed */
|
||||
unsigned int ignore_module_refcount:1;
|
||||
/*
|
||||
* signal if the module handling the component should not be removed
|
||||
* if a pcm is open. Setting this would prevent the module
|
||||
* refcount being incremented in probe() but allow it be incremented
|
||||
* when a pcm is opened and decremented when it is closed.
|
||||
*/
|
||||
unsigned int module_get_upon_open:1;
|
||||
|
||||
/* bits */
|
||||
unsigned int idle_bias_on:1;
|
||||
|
@ -1083,6 +1088,8 @@ struct snd_soc_card {
|
|||
struct mutex mutex;
|
||||
struct mutex dapm_mutex;
|
||||
|
||||
spinlock_t dpcm_lock;
|
||||
|
||||
bool instantiated;
|
||||
bool topology_shortname_created;
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
#ifndef __KERNEL__
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
@ -940,6 +940,28 @@ static int snd_pcm_oss_change_params_locked(struct snd_pcm_substream *substream)
|
|||
oss_frame_size = snd_pcm_format_physical_width(params_format(params)) *
|
||||
params_channels(params) / 8;
|
||||
|
||||
err = snd_pcm_oss_period_size(substream, params, sparams);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
n = snd_pcm_plug_slave_size(substream, runtime->oss.period_bytes / oss_frame_size);
|
||||
err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, n, NULL);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIODS,
|
||||
runtime->oss.periods, NULL);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
|
||||
|
||||
err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_HW_PARAMS, sparams);
|
||||
if (err < 0) {
|
||||
pcm_dbg(substream->pcm, "HW_PARAMS failed: %i\n", err);
|
||||
goto failure;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SND_PCM_OSS_PLUGINS
|
||||
snd_pcm_oss_plugin_clear(substream);
|
||||
if (!direct) {
|
||||
|
@ -974,27 +996,6 @@ static int snd_pcm_oss_change_params_locked(struct snd_pcm_substream *substream)
|
|||
}
|
||||
#endif
|
||||
|
||||
err = snd_pcm_oss_period_size(substream, params, sparams);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
n = snd_pcm_plug_slave_size(substream, runtime->oss.period_bytes / oss_frame_size);
|
||||
err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, n, NULL);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIODS,
|
||||
runtime->oss.periods, NULL);
|
||||
if (err < 0)
|
||||
goto failure;
|
||||
|
||||
snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
|
||||
|
||||
if ((err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_HW_PARAMS, sparams)) < 0) {
|
||||
pcm_dbg(substream->pcm, "HW_PARAMS failed: %i\n", err);
|
||||
goto failure;
|
||||
}
|
||||
|
||||
if (runtime->oss.trigger) {
|
||||
sw_params->start_threshold = 1;
|
||||
} else {
|
||||
|
|
|
@ -1445,8 +1445,15 @@ static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
|
|||
static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
|
||||
{
|
||||
struct snd_pcm_runtime *runtime = substream->runtime;
|
||||
if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
|
||||
switch (runtime->status->state) {
|
||||
case SNDRV_PCM_STATE_SUSPENDED:
|
||||
return -EBUSY;
|
||||
/* unresumable PCM state; return -EBUSY for skipping suspend */
|
||||
case SNDRV_PCM_STATE_OPEN:
|
||||
case SNDRV_PCM_STATE_SETUP:
|
||||
case SNDRV_PCM_STATE_DISCONNECTED:
|
||||
return -EBUSY;
|
||||
}
|
||||
runtime->trigger_master = substream;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include <linux/module.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/nospec.h>
|
||||
#include <sound/rawmidi.h>
|
||||
#include <sound/info.h>
|
||||
#include <sound/control.h>
|
||||
|
@ -601,6 +602,7 @@ static int __snd_rawmidi_info_select(struct snd_card *card,
|
|||
return -ENXIO;
|
||||
if (info->stream < 0 || info->stream > 1)
|
||||
return -EINVAL;
|
||||
info->stream = array_index_nospec(info->stream, 2);
|
||||
pstr = &rmidi->streams[info->stream];
|
||||
if (pstr->substream_count == 0)
|
||||
return -ENOENT;
|
||||
|
|
|
@ -617,13 +617,14 @@ int
|
|||
snd_seq_oss_synth_make_info(struct seq_oss_devinfo *dp, int dev, struct synth_info *inf)
|
||||
{
|
||||
struct seq_oss_synth *rec;
|
||||
struct seq_oss_synthinfo *info = get_synthinfo_nospec(dp, dev);
|
||||
|
||||
if (dev < 0 || dev >= dp->max_synthdev)
|
||||
if (!info)
|
||||
return -ENXIO;
|
||||
|
||||
if (dp->synths[dev].is_midi) {
|
||||
if (info->is_midi) {
|
||||
struct midi_info minf;
|
||||
snd_seq_oss_midi_make_info(dp, dp->synths[dev].midi_mapped, &minf);
|
||||
snd_seq_oss_midi_make_info(dp, info->midi_mapped, &minf);
|
||||
inf->synth_type = SYNTH_TYPE_MIDI;
|
||||
inf->synth_subtype = 0;
|
||||
inf->nr_voices = 16;
|
||||
|
|
|
@ -1279,7 +1279,7 @@ static int snd_seq_ioctl_set_client_info(struct snd_seq_client *client,
|
|||
|
||||
/* fill the info fields */
|
||||
if (client_info->name[0])
|
||||
strlcpy(client->name, client_info->name, sizeof(client->name));
|
||||
strscpy(client->name, client_info->name, sizeof(client->name));
|
||||
|
||||
client->filter = client_info->filter;
|
||||
client->event_lost = client_info->event_lost;
|
||||
|
@ -1557,7 +1557,7 @@ static int snd_seq_ioctl_create_queue(struct snd_seq_client *client, void *arg)
|
|||
/* set queue name */
|
||||
if (!info->name[0])
|
||||
snprintf(info->name, sizeof(info->name), "Queue-%d", q->queue);
|
||||
strlcpy(q->name, info->name, sizeof(q->name));
|
||||
strscpy(q->name, info->name, sizeof(q->name));
|
||||
snd_use_lock_free(&q->use_lock);
|
||||
|
||||
return 0;
|
||||
|
@ -1619,7 +1619,7 @@ static int snd_seq_ioctl_set_queue_info(struct snd_seq_client *client,
|
|||
queuefree(q);
|
||||
return -EPERM;
|
||||
}
|
||||
strlcpy(q->name, info->name, sizeof(q->name));
|
||||
strscpy(q->name, info->name, sizeof(q->name));
|
||||
queuefree(q);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -107,7 +107,6 @@ int snd_hdac_ext_bus_init(struct hdac_bus *bus, struct device *dev,
|
|||
INIT_LIST_HEAD(&bus->hlink_list);
|
||||
bus->idx = idx++;
|
||||
|
||||
mutex_init(&bus->lock);
|
||||
bus->cmd_dma_state = true;
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -38,6 +38,7 @@ int snd_hdac_bus_init(struct hdac_bus *bus, struct device *dev,
|
|||
INIT_WORK(&bus->unsol_work, snd_hdac_bus_process_unsol_events);
|
||||
spin_lock_init(&bus->reg_lock);
|
||||
mutex_init(&bus->cmd_mutex);
|
||||
mutex_init(&bus->lock);
|
||||
bus->irq = -1;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -69,13 +69,15 @@ void snd_hdac_display_power(struct hdac_bus *bus, unsigned int idx, bool enable)
|
|||
|
||||
dev_dbg(bus->dev, "display power %s\n",
|
||||
enable ? "enable" : "disable");
|
||||
|
||||
mutex_lock(&bus->lock);
|
||||
if (enable)
|
||||
set_bit(idx, &bus->display_power_status);
|
||||
else
|
||||
clear_bit(idx, &bus->display_power_status);
|
||||
|
||||
if (!acomp || !acomp->ops)
|
||||
return;
|
||||
goto unlock;
|
||||
|
||||
if (bus->display_power_status) {
|
||||
if (!bus->display_power_active) {
|
||||
|
@ -92,6 +94,8 @@ void snd_hdac_display_power(struct hdac_bus *bus, unsigned int idx, bool enable)
|
|||
bus->display_power_active = false;
|
||||
}
|
||||
}
|
||||
unlock:
|
||||
mutex_unlock(&bus->lock);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_hdac_display_power);
|
||||
|
||||
|
|
|
@ -969,6 +969,7 @@ int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
|
|||
|
||||
/* power-up all before initialization */
|
||||
hda_set_power_state(codec, AC_PWRST_D0);
|
||||
codec->core.dev.power.power_state = PMSG_ON;
|
||||
|
||||
snd_hda_codec_proc_new(codec);
|
||||
|
||||
|
@ -2939,6 +2940,20 @@ static int hda_codec_runtime_resume(struct device *dev)
|
|||
#endif /* CONFIG_PM */
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int hda_codec_force_resume(struct device *dev)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* The get/put pair below enforces the runtime resume even if the
|
||||
* device hasn't been used at suspend time. This trick is needed to
|
||||
* update the jack state change during the sleep.
|
||||
*/
|
||||
pm_runtime_get_noresume(dev);
|
||||
ret = pm_runtime_force_resume(dev);
|
||||
pm_runtime_put(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int hda_codec_pm_suspend(struct device *dev)
|
||||
{
|
||||
dev->power.power_state = PMSG_SUSPEND;
|
||||
|
@ -2948,7 +2963,7 @@ static int hda_codec_pm_suspend(struct device *dev)
|
|||
static int hda_codec_pm_resume(struct device *dev)
|
||||
{
|
||||
dev->power.power_state = PMSG_RESUME;
|
||||
return pm_runtime_force_resume(dev);
|
||||
return hda_codec_force_resume(dev);
|
||||
}
|
||||
|
||||
static int hda_codec_pm_freeze(struct device *dev)
|
||||
|
@ -2960,13 +2975,13 @@ static int hda_codec_pm_freeze(struct device *dev)
|
|||
static int hda_codec_pm_thaw(struct device *dev)
|
||||
{
|
||||
dev->power.power_state = PMSG_THAW;
|
||||
return pm_runtime_force_resume(dev);
|
||||
return hda_codec_force_resume(dev);
|
||||
}
|
||||
|
||||
static int hda_codec_pm_restore(struct device *dev)
|
||||
{
|
||||
dev->power.power_state = PMSG_RESTORE;
|
||||
return pm_runtime_force_resume(dev);
|
||||
return hda_codec_force_resume(dev);
|
||||
}
|
||||
#endif /* CONFIG_PM_SLEEP */
|
||||
|
||||
|
|
|
@ -947,7 +947,7 @@ static void __azx_runtime_suspend(struct azx *chip)
|
|||
display_power(chip, false);
|
||||
}
|
||||
|
||||
static void __azx_runtime_resume(struct azx *chip)
|
||||
static void __azx_runtime_resume(struct azx *chip, bool from_rt)
|
||||
{
|
||||
struct hda_intel *hda = container_of(chip, struct hda_intel, chip);
|
||||
struct hdac_bus *bus = azx_bus(chip);
|
||||
|
@ -964,7 +964,7 @@ static void __azx_runtime_resume(struct azx *chip)
|
|||
azx_init_pci(chip);
|
||||
hda_intel_init_chip(chip, true);
|
||||
|
||||
if (status) {
|
||||
if (status && from_rt) {
|
||||
list_for_each_codec(codec, &chip->bus)
|
||||
if (status & (1 << codec->addr))
|
||||
schedule_delayed_work(&codec->jackpoll_work,
|
||||
|
@ -1016,7 +1016,7 @@ static int azx_resume(struct device *dev)
|
|||
chip->msi = 0;
|
||||
if (azx_acquire_irq(chip, 1) < 0)
|
||||
return -EIO;
|
||||
__azx_runtime_resume(chip);
|
||||
__azx_runtime_resume(chip, false);
|
||||
snd_power_change_state(card, SNDRV_CTL_POWER_D0);
|
||||
|
||||
trace_azx_resume(chip);
|
||||
|
@ -1081,7 +1081,7 @@ static int azx_runtime_resume(struct device *dev)
|
|||
chip = card->private_data;
|
||||
if (!azx_has_pm_runtime(chip))
|
||||
return 0;
|
||||
__azx_runtime_resume(chip);
|
||||
__azx_runtime_resume(chip, true);
|
||||
|
||||
/* disable controller Wake Up event*/
|
||||
azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) &
|
||||
|
@ -2142,6 +2142,8 @@ static struct snd_pci_quirk power_save_blacklist[] = {
|
|||
SND_PCI_QUIRK(0x8086, 0x2040, "Intel DZ77BH-55K", 0),
|
||||
/* https://bugzilla.kernel.org/show_bug.cgi?id=199607 */
|
||||
SND_PCI_QUIRK(0x8086, 0x2057, "Intel NUC5i7RYB", 0),
|
||||
/* https://bugs.launchpad.net/bugs/1821663 */
|
||||
SND_PCI_QUIRK(0x8086, 0x2064, "Intel SDP 8086:2064", 0),
|
||||
/* https://bugzilla.redhat.com/show_bug.cgi?id=1520902 */
|
||||
SND_PCI_QUIRK(0x8086, 0x2068, "Intel NUC7i3BNB", 0),
|
||||
/* https://bugzilla.kernel.org/show_bug.cgi?id=198611 */
|
||||
|
@ -2150,6 +2152,8 @@ static struct snd_pci_quirk power_save_blacklist[] = {
|
|||
SND_PCI_QUIRK(0x17aa, 0x367b, "Lenovo IdeaCentre B550", 0),
|
||||
/* https://bugzilla.redhat.com/show_bug.cgi?id=1572975 */
|
||||
SND_PCI_QUIRK(0x17aa, 0x36a7, "Lenovo C50 All in one", 0),
|
||||
/* https://bugs.launchpad.net/bugs/1821663 */
|
||||
SND_PCI_QUIRK(0x1631, 0xe017, "Packard Bell NEC IMEDIA 5204", 0),
|
||||
{}
|
||||
};
|
||||
#endif /* CONFIG_PM */
|
||||
|
|
|
@ -1005,7 +1005,6 @@ struct ca0132_spec {
|
|||
unsigned int scp_resp_header;
|
||||
unsigned int scp_resp_data[4];
|
||||
unsigned int scp_resp_count;
|
||||
bool alt_firmware_present;
|
||||
bool startup_check_entered;
|
||||
bool dsp_reload;
|
||||
|
||||
|
@ -7518,7 +7517,7 @@ static bool ca0132_download_dsp_images(struct hda_codec *codec)
|
|||
bool dsp_loaded = false;
|
||||
struct ca0132_spec *spec = codec->spec;
|
||||
const struct dsp_image_seg *dsp_os_image;
|
||||
const struct firmware *fw_entry;
|
||||
const struct firmware *fw_entry = NULL;
|
||||
/*
|
||||
* Alternate firmwares for different variants. The Recon3Di apparently
|
||||
* can use the default firmware, but I'll leave the option in case
|
||||
|
@ -7529,33 +7528,26 @@ static bool ca0132_download_dsp_images(struct hda_codec *codec)
|
|||
case QUIRK_R3D:
|
||||
case QUIRK_AE5:
|
||||
if (request_firmware(&fw_entry, DESKTOP_EFX_FILE,
|
||||
codec->card->dev) != 0) {
|
||||
codec->card->dev) != 0)
|
||||
codec_dbg(codec, "Desktop firmware not found.");
|
||||
spec->alt_firmware_present = false;
|
||||
} else {
|
||||
else
|
||||
codec_dbg(codec, "Desktop firmware selected.");
|
||||
spec->alt_firmware_present = true;
|
||||
}
|
||||
break;
|
||||
case QUIRK_R3DI:
|
||||
if (request_firmware(&fw_entry, R3DI_EFX_FILE,
|
||||
codec->card->dev) != 0) {
|
||||
codec->card->dev) != 0)
|
||||
codec_dbg(codec, "Recon3Di alt firmware not detected.");
|
||||
spec->alt_firmware_present = false;
|
||||
} else {
|
||||
else
|
||||
codec_dbg(codec, "Recon3Di firmware selected.");
|
||||
spec->alt_firmware_present = true;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
spec->alt_firmware_present = false;
|
||||
break;
|
||||
}
|
||||
/*
|
||||
* Use default ctefx.bin if no alt firmware is detected, or if none
|
||||
* exists for your particular codec.
|
||||
*/
|
||||
if (!spec->alt_firmware_present) {
|
||||
if (!fw_entry) {
|
||||
codec_dbg(codec, "Default firmware selected.");
|
||||
if (request_firmware(&fw_entry, EFX_FILE,
|
||||
codec->card->dev) != 0)
|
||||
|
|
|
@ -1864,8 +1864,8 @@ enum {
|
|||
ALC887_FIXUP_BASS_CHMAP,
|
||||
ALC1220_FIXUP_GB_DUAL_CODECS,
|
||||
ALC1220_FIXUP_CLEVO_P950,
|
||||
ALC1220_FIXUP_SYSTEM76_ORYP5,
|
||||
ALC1220_FIXUP_SYSTEM76_ORYP5_PINS,
|
||||
ALC1220_FIXUP_CLEVO_PB51ED,
|
||||
ALC1220_FIXUP_CLEVO_PB51ED_PINS,
|
||||
};
|
||||
|
||||
static void alc889_fixup_coef(struct hda_codec *codec,
|
||||
|
@ -2070,7 +2070,7 @@ static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
|
|||
static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix, int action);
|
||||
|
||||
static void alc1220_fixup_system76_oryp5(struct hda_codec *codec,
|
||||
static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix,
|
||||
int action)
|
||||
{
|
||||
|
@ -2322,18 +2322,18 @@ static const struct hda_fixup alc882_fixups[] = {
|
|||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc1220_fixup_clevo_p950,
|
||||
},
|
||||
[ALC1220_FIXUP_SYSTEM76_ORYP5] = {
|
||||
[ALC1220_FIXUP_CLEVO_PB51ED] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc1220_fixup_system76_oryp5,
|
||||
.v.func = alc1220_fixup_clevo_pb51ed,
|
||||
},
|
||||
[ALC1220_FIXUP_SYSTEM76_ORYP5_PINS] = {
|
||||
[ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
.v.pins = (const struct hda_pintbl[]) {
|
||||
{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
|
||||
{}
|
||||
},
|
||||
.chained = true,
|
||||
.chain_id = ALC1220_FIXUP_SYSTEM76_ORYP5,
|
||||
.chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -2411,8 +2411,9 @@ static const struct snd_pci_quirk alc882_fixup_tbl[] = {
|
|||
SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
|
||||
SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
|
||||
SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
|
||||
SND_PCI_QUIRK(0x1558, 0x96e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_SYSTEM76_ORYP5_PINS),
|
||||
SND_PCI_QUIRK(0x1558, 0x97e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_SYSTEM76_ORYP5_PINS),
|
||||
SND_PCI_QUIRK(0x1558, 0x96e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
|
||||
SND_PCI_QUIRK(0x1558, 0x97e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
|
||||
SND_PCI_QUIRK(0x1558, 0x65d1, "Tuxedo Book XC1509", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
|
||||
SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
|
||||
SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
|
||||
SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
|
||||
|
@ -5491,7 +5492,7 @@ static void alc_headset_btn_callback(struct hda_codec *codec,
|
|||
jack->jack->button_state = report;
|
||||
}
|
||||
|
||||
static void alc295_fixup_chromebook(struct hda_codec *codec,
|
||||
static void alc_fixup_headset_jack(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix, int action)
|
||||
{
|
||||
|
||||
|
@ -5501,16 +5502,6 @@ static void alc295_fixup_chromebook(struct hda_codec *codec,
|
|||
alc_headset_btn_callback);
|
||||
snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", false,
|
||||
SND_JACK_HEADSET, alc_headset_btn_keymap);
|
||||
switch (codec->core.vendor_id) {
|
||||
case 0x10ec0295:
|
||||
alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
|
||||
alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
|
||||
break;
|
||||
case 0x10ec0236:
|
||||
alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
|
||||
alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case HDA_FIXUP_ACT_INIT:
|
||||
switch (codec->core.vendor_id) {
|
||||
|
@ -5531,6 +5522,25 @@ static void alc295_fixup_chromebook(struct hda_codec *codec,
|
|||
}
|
||||
}
|
||||
|
||||
static void alc295_fixup_chromebook(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix, int action)
|
||||
{
|
||||
switch (action) {
|
||||
case HDA_FIXUP_ACT_INIT:
|
||||
switch (codec->core.vendor_id) {
|
||||
case 0x10ec0295:
|
||||
alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
|
||||
alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
|
||||
break;
|
||||
case 0x10ec0236:
|
||||
alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
|
||||
alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
|
||||
const struct hda_fixup *fix, int action)
|
||||
{
|
||||
|
@ -5663,6 +5673,7 @@ enum {
|
|||
ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
|
||||
ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
|
||||
ALC233_FIXUP_LENOVO_MULTI_CODECS,
|
||||
ALC233_FIXUP_ACER_HEADSET_MIC,
|
||||
ALC294_FIXUP_LENOVO_MIC_LOCATION,
|
||||
ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
|
||||
ALC700_FIXUP_INTEL_REFERENCE,
|
||||
|
@ -5684,9 +5695,13 @@ enum {
|
|||
ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
|
||||
ALC255_FIXUP_ACER_HEADSET_MIC,
|
||||
ALC295_FIXUP_CHROME_BOOK,
|
||||
ALC225_FIXUP_HEADSET_JACK,
|
||||
ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
|
||||
ALC225_FIXUP_WYSE_AUTO_MUTE,
|
||||
ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
|
||||
ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
|
||||
ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
|
||||
ALC299_FIXUP_PREDATOR_SPK,
|
||||
};
|
||||
|
||||
static const struct hda_fixup alc269_fixups[] = {
|
||||
|
@ -6487,6 +6502,16 @@ static const struct hda_fixup alc269_fixups[] = {
|
|||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc233_alc662_fixup_lenovo_dual_codecs,
|
||||
},
|
||||
[ALC233_FIXUP_ACER_HEADSET_MIC] = {
|
||||
.type = HDA_FIXUP_VERBS,
|
||||
.v.verbs = (const struct hda_verb[]) {
|
||||
{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
|
||||
{ 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
|
||||
{ }
|
||||
},
|
||||
.chained = true,
|
||||
.chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
|
||||
},
|
||||
[ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
.v.pins = (const struct hda_pintbl[]) {
|
||||
|
@ -6632,6 +6657,12 @@ static const struct hda_fixup alc269_fixups[] = {
|
|||
[ALC295_FIXUP_CHROME_BOOK] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc295_fixup_chromebook,
|
||||
.chained = true,
|
||||
.chain_id = ALC225_FIXUP_HEADSET_JACK
|
||||
},
|
||||
[ALC225_FIXUP_HEADSET_JACK] = {
|
||||
.type = HDA_FIXUP_FUNC,
|
||||
.v.func = alc_fixup_headset_jack,
|
||||
},
|
||||
[ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
|
@ -6685,6 +6716,32 @@ static const struct hda_fixup alc269_fixups[] = {
|
|||
.chained = true,
|
||||
.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
|
||||
},
|
||||
[ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
|
||||
.type = HDA_FIXUP_VERBS,
|
||||
.v.verbs = (const struct hda_verb[]) {
|
||||
{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
|
||||
{ 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
|
||||
{ }
|
||||
},
|
||||
.chained = true,
|
||||
.chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
|
||||
},
|
||||
[ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
.v.pins = (const struct hda_pintbl[]) {
|
||||
{ 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
|
||||
{ }
|
||||
},
|
||||
.chained = true,
|
||||
.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
|
||||
},
|
||||
[ALC299_FIXUP_PREDATOR_SPK] = {
|
||||
.type = HDA_FIXUP_PINS,
|
||||
.v.pins = (const struct hda_pintbl[]) {
|
||||
{ 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
|
||||
{ }
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
||||
|
@ -6701,9 +6758,14 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
|||
SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
|
||||
SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
|
||||
SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
|
||||
SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
|
||||
SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
|
||||
SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
|
||||
SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
|
||||
|
@ -7099,7 +7161,9 @@ static const struct hda_model_fixup alc269_fixup_models[] = {
|
|||
{.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
|
||||
{.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
|
||||
{.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
|
||||
{.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-sense-combo"},
|
||||
{.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
|
||||
{.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
|
||||
{.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
|
||||
{}
|
||||
};
|
||||
#define ALC225_STANDARD_PINS \
|
||||
|
@ -7320,6 +7384,18 @@ static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
|
|||
{0x14, 0x90170110},
|
||||
{0x1b, 0x90a70130},
|
||||
{0x21, 0x03211020}),
|
||||
SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
|
||||
{0x12, 0x90a60130},
|
||||
{0x14, 0x90170110},
|
||||
{0x21, 0x03211020}),
|
||||
SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
|
||||
{0x12, 0x90a60130},
|
||||
{0x14, 0x90170110},
|
||||
{0x21, 0x04211020}),
|
||||
SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
|
||||
{0x1a, 0x90a70130},
|
||||
{0x1b, 0x90170110},
|
||||
{0x21, 0x03211020}),
|
||||
SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
|
||||
{0x12, 0xb7a60130},
|
||||
{0x13, 0xb8a61140},
|
||||
|
|
|
@ -1151,6 +1151,7 @@ config SND_SOC_WCD9335
|
|||
tristate "WCD9335 Codec"
|
||||
depends on SLIMBUS
|
||||
select REGMAP_SLIMBUS
|
||||
select REGMAP_IRQ
|
||||
help
|
||||
The WCD9335 is a standalone Hi-Fi audio CODEC IC, supports
|
||||
Qualcomm Technologies, Inc. (QTI) multimedia solutions,
|
||||
|
|
|
@ -2129,6 +2129,7 @@ static int ab8500_codec_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
|
|||
dev_err(dai->component->dev,
|
||||
"%s: ERROR: The device is either a master or a slave.\n",
|
||||
__func__);
|
||||
/* fall through */
|
||||
default:
|
||||
dev_err(dai->component->dev,
|
||||
"%s: ERROR: Unsupporter master mask 0x%x\n",
|
||||
|
|
|
@ -1635,6 +1635,16 @@ static int cs35l35_i2c_probe(struct i2c_client *i2c_client,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int cs35l35_i2c_remove(struct i2c_client *i2c_client)
|
||||
{
|
||||
struct cs35l35_private *cs35l35 = i2c_get_clientdata(i2c_client);
|
||||
|
||||
regulator_bulk_disable(cs35l35->num_supplies, cs35l35->supplies);
|
||||
gpiod_set_value_cansleep(cs35l35->reset_gpio, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id cs35l35_of_match[] = {
|
||||
{.compatible = "cirrus,cs35l35"},
|
||||
{},
|
||||
|
@ -1655,6 +1665,7 @@ static struct i2c_driver cs35l35_i2c_driver = {
|
|||
},
|
||||
.id_table = cs35l35_id,
|
||||
.probe = cs35l35_i2c_probe,
|
||||
.remove = cs35l35_i2c_remove,
|
||||
};
|
||||
|
||||
module_i2c_driver(cs35l35_i2c_driver);
|
||||
|
|
|
@ -642,6 +642,7 @@ static const struct regmap_config cs4270_regmap = {
|
|||
.reg_defaults = cs4270_reg_defaults,
|
||||
.num_reg_defaults = ARRAY_SIZE(cs4270_reg_defaults),
|
||||
.cache_type = REGCACHE_RBTREE,
|
||||
.write_flag_mask = CS4270_I2C_INCR,
|
||||
|
||||
.readable_reg = cs4270_reg_is_readable,
|
||||
.volatile_reg = cs4270_reg_is_volatile,
|
||||
|
|
|
@ -38,6 +38,9 @@ static void hdac_hda_dai_close(struct snd_pcm_substream *substream,
|
|||
struct snd_soc_dai *dai);
|
||||
static int hdac_hda_dai_prepare(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *dai);
|
||||
static int hdac_hda_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai);
|
||||
static int hdac_hda_dai_hw_free(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *dai);
|
||||
static int hdac_hda_dai_set_tdm_slot(struct snd_soc_dai *dai,
|
||||
|
@ -50,6 +53,7 @@ static const struct snd_soc_dai_ops hdac_hda_dai_ops = {
|
|||
.startup = hdac_hda_dai_open,
|
||||
.shutdown = hdac_hda_dai_close,
|
||||
.prepare = hdac_hda_dai_prepare,
|
||||
.hw_params = hdac_hda_dai_hw_params,
|
||||
.hw_free = hdac_hda_dai_hw_free,
|
||||
.set_tdm_slot = hdac_hda_dai_set_tdm_slot,
|
||||
};
|
||||
|
@ -139,6 +143,39 @@ static int hdac_hda_dai_set_tdm_slot(struct snd_soc_dai *dai,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int hdac_hda_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_component *component = dai->component;
|
||||
struct hdac_hda_priv *hda_pvt;
|
||||
unsigned int format_val;
|
||||
unsigned int maxbps;
|
||||
|
||||
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
||||
maxbps = dai->driver->playback.sig_bits;
|
||||
else
|
||||
maxbps = dai->driver->capture.sig_bits;
|
||||
|
||||
hda_pvt = snd_soc_component_get_drvdata(component);
|
||||
format_val = snd_hdac_calc_stream_format(params_rate(params),
|
||||
params_channels(params),
|
||||
params_format(params),
|
||||
maxbps,
|
||||
0);
|
||||
if (!format_val) {
|
||||
dev_err(dai->dev,
|
||||
"invalid format_val, rate=%d, ch=%d, format=%d, maxbps=%d\n",
|
||||
params_rate(params), params_channels(params),
|
||||
params_format(params), maxbps);
|
||||
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
hda_pvt->pcm[dai->id].format_val[substream->stream] = format_val;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hdac_hda_dai_hw_free(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
|
@ -162,10 +199,9 @@ static int hdac_hda_dai_prepare(struct snd_pcm_substream *substream,
|
|||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_component *component = dai->component;
|
||||
struct hdac_hda_priv *hda_pvt;
|
||||
struct snd_pcm_runtime *runtime = substream->runtime;
|
||||
struct hdac_device *hdev;
|
||||
struct hda_pcm_stream *hda_stream;
|
||||
struct hdac_hda_priv *hda_pvt;
|
||||
struct hdac_device *hdev;
|
||||
unsigned int format_val;
|
||||
struct hda_pcm *pcm;
|
||||
unsigned int stream;
|
||||
|
@ -179,19 +215,8 @@ static int hdac_hda_dai_prepare(struct snd_pcm_substream *substream,
|
|||
|
||||
hda_stream = &pcm->stream[substream->stream];
|
||||
|
||||
format_val = snd_hdac_calc_stream_format(runtime->rate,
|
||||
runtime->channels,
|
||||
runtime->format,
|
||||
hda_stream->maxbps,
|
||||
0);
|
||||
if (!format_val) {
|
||||
dev_err(&hdev->dev,
|
||||
"invalid format_val, rate=%d, ch=%d, format=%d\n",
|
||||
runtime->rate, runtime->channels, runtime->format);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
stream = hda_pvt->pcm[dai->id].stream_tag[substream->stream];
|
||||
format_val = hda_pvt->pcm[dai->id].format_val[substream->stream];
|
||||
|
||||
ret = snd_hda_codec_prepare(&hda_pvt->codec, hda_stream,
|
||||
stream, format_val, substream);
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
struct hdac_hda_pcm {
|
||||
int stream_tag[2];
|
||||
unsigned int format_val[2];
|
||||
};
|
||||
|
||||
struct hdac_hda_priv {
|
||||
|
|
|
@ -484,9 +484,6 @@ static int hdmi_codec_hw_params(struct snd_pcm_substream *substream,
|
|||
params_width(params), params_rate(params),
|
||||
params_channels(params));
|
||||
|
||||
if (params_width(params) > 24)
|
||||
params->msbits = 24;
|
||||
|
||||
ret = snd_pcm_create_iec958_consumer_hw_params(params, hp.iec.status,
|
||||
sizeof(hp.iec.status));
|
||||
if (ret < 0) {
|
||||
|
@ -529,73 +526,71 @@ static int hdmi_codec_set_fmt(struct snd_soc_dai *dai,
|
|||
{
|
||||
struct hdmi_codec_priv *hcp = snd_soc_dai_get_drvdata(dai);
|
||||
struct hdmi_codec_daifmt cf = { 0 };
|
||||
int ret = 0;
|
||||
|
||||
dev_dbg(dai->dev, "%s()\n", __func__);
|
||||
|
||||
if (dai->id == DAI_ID_SPDIF) {
|
||||
cf.fmt = HDMI_SPDIF;
|
||||
} else {
|
||||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
cf.bit_clk_master = 1;
|
||||
cf.frame_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBS_CFM:
|
||||
cf.frame_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFS:
|
||||
cf.bit_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
if (dai->id == DAI_ID_SPDIF)
|
||||
return 0;
|
||||
|
||||
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
|
||||
case SND_SOC_DAIFMT_NB_NF:
|
||||
break;
|
||||
case SND_SOC_DAIFMT_NB_IF:
|
||||
cf.frame_clk_inv = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_IB_NF:
|
||||
cf.bit_clk_inv = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_IB_IF:
|
||||
cf.frame_clk_inv = 1;
|
||||
cf.bit_clk_inv = 1;
|
||||
break;
|
||||
}
|
||||
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
||||
case SND_SOC_DAIFMT_CBM_CFM:
|
||||
cf.bit_clk_master = 1;
|
||||
cf.frame_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBS_CFM:
|
||||
cf.frame_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBM_CFS:
|
||||
cf.bit_clk_master = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_CBS_CFS:
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
|
||||
case SND_SOC_DAIFMT_I2S:
|
||||
cf.fmt = HDMI_I2S;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_DSP_A:
|
||||
cf.fmt = HDMI_DSP_A;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_DSP_B:
|
||||
cf.fmt = HDMI_DSP_B;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_RIGHT_J:
|
||||
cf.fmt = HDMI_RIGHT_J;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_LEFT_J:
|
||||
cf.fmt = HDMI_LEFT_J;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_AC97:
|
||||
cf.fmt = HDMI_AC97;
|
||||
break;
|
||||
default:
|
||||
dev_err(dai->dev, "Invalid DAI interface format\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
|
||||
case SND_SOC_DAIFMT_NB_NF:
|
||||
break;
|
||||
case SND_SOC_DAIFMT_NB_IF:
|
||||
cf.frame_clk_inv = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_IB_NF:
|
||||
cf.bit_clk_inv = 1;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_IB_IF:
|
||||
cf.frame_clk_inv = 1;
|
||||
cf.bit_clk_inv = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
|
||||
case SND_SOC_DAIFMT_I2S:
|
||||
cf.fmt = HDMI_I2S;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_DSP_A:
|
||||
cf.fmt = HDMI_DSP_A;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_DSP_B:
|
||||
cf.fmt = HDMI_DSP_B;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_RIGHT_J:
|
||||
cf.fmt = HDMI_RIGHT_J;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_LEFT_J:
|
||||
cf.fmt = HDMI_LEFT_J;
|
||||
break;
|
||||
case SND_SOC_DAIFMT_AC97:
|
||||
cf.fmt = HDMI_AC97;
|
||||
break;
|
||||
default:
|
||||
dev_err(dai->dev, "Invalid DAI interface format\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
hcp->daifmt[dai->id] = cf;
|
||||
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hdmi_codec_digital_mute(struct snd_soc_dai *dai, int mute)
|
||||
|
@ -792,8 +787,10 @@ static int hdmi_codec_probe(struct platform_device *pdev)
|
|||
i++;
|
||||
}
|
||||
|
||||
if (hcd->spdif)
|
||||
if (hcd->spdif) {
|
||||
hcp->daidrv[i] = hdmi_spdif_dai;
|
||||
hcp->daifmt[DAI_ID_SPDIF].fmt = HDMI_SPDIF;
|
||||
}
|
||||
|
||||
dev_set_drvdata(dev, hcp);
|
||||
|
||||
|
|
|
@ -411,9 +411,9 @@ static const struct snd_soc_dapm_widget nau8810_dapm_widgets[] = {
|
|||
SND_SOC_DAPM_MIXER("Mono Mixer", NAU8810_REG_POWER3,
|
||||
NAU8810_MOUTMX_EN_SFT, 0, &nau8810_mono_mixer_controls[0],
|
||||
ARRAY_SIZE(nau8810_mono_mixer_controls)),
|
||||
SND_SOC_DAPM_DAC("DAC", "HiFi Playback", NAU8810_REG_POWER3,
|
||||
SND_SOC_DAPM_DAC("DAC", "Playback", NAU8810_REG_POWER3,
|
||||
NAU8810_DAC_EN_SFT, 0),
|
||||
SND_SOC_DAPM_ADC("ADC", "HiFi Capture", NAU8810_REG_POWER2,
|
||||
SND_SOC_DAPM_ADC("ADC", "Capture", NAU8810_REG_POWER2,
|
||||
NAU8810_ADC_EN_SFT, 0),
|
||||
SND_SOC_DAPM_PGA("SpkN Out", NAU8810_REG_POWER3,
|
||||
NAU8810_NSPK_EN_SFT, 0, NULL, 0),
|
||||
|
|
|
@ -681,8 +681,8 @@ static const struct snd_soc_dapm_widget nau8824_dapm_widgets[] = {
|
|||
SND_SOC_DAPM_ADC("ADCR", NULL, NAU8824_REG_ANALOG_ADC_2,
|
||||
NAU8824_ADCR_EN_SFT, 0),
|
||||
|
||||
SND_SOC_DAPM_AIF_OUT("AIFTX", "HiFi Capture", 0, SND_SOC_NOPM, 0, 0),
|
||||
SND_SOC_DAPM_AIF_IN("AIFRX", "HiFi Playback", 0, SND_SOC_NOPM, 0, 0),
|
||||
SND_SOC_DAPM_AIF_OUT("AIFTX", "Capture", 0, SND_SOC_NOPM, 0, 0),
|
||||
SND_SOC_DAPM_AIF_IN("AIFRX", "Playback", 0, SND_SOC_NOPM, 0, 0),
|
||||
|
||||
SND_SOC_DAPM_DAC("DACL", NULL, NAU8824_REG_RDAC,
|
||||
NAU8824_DACL_EN_SFT, 0),
|
||||
|
@ -831,6 +831,36 @@ static void nau8824_int_status_clear_all(struct regmap *regmap)
|
|||
}
|
||||
}
|
||||
|
||||
static void nau8824_dapm_disable_pin(struct nau8824 *nau8824, const char *pin)
|
||||
{
|
||||
struct snd_soc_dapm_context *dapm = nau8824->dapm;
|
||||
const char *prefix = dapm->component->name_prefix;
|
||||
char prefixed_pin[80];
|
||||
|
||||
if (prefix) {
|
||||
snprintf(prefixed_pin, sizeof(prefixed_pin), "%s %s",
|
||||
prefix, pin);
|
||||
snd_soc_dapm_disable_pin(dapm, prefixed_pin);
|
||||
} else {
|
||||
snd_soc_dapm_disable_pin(dapm, pin);
|
||||
}
|
||||
}
|
||||
|
||||
static void nau8824_dapm_enable_pin(struct nau8824 *nau8824, const char *pin)
|
||||
{
|
||||
struct snd_soc_dapm_context *dapm = nau8824->dapm;
|
||||
const char *prefix = dapm->component->name_prefix;
|
||||
char prefixed_pin[80];
|
||||
|
||||
if (prefix) {
|
||||
snprintf(prefixed_pin, sizeof(prefixed_pin), "%s %s",
|
||||
prefix, pin);
|
||||
snd_soc_dapm_force_enable_pin(dapm, prefixed_pin);
|
||||
} else {
|
||||
snd_soc_dapm_force_enable_pin(dapm, pin);
|
||||
}
|
||||
}
|
||||
|
||||
static void nau8824_eject_jack(struct nau8824 *nau8824)
|
||||
{
|
||||
struct snd_soc_dapm_context *dapm = nau8824->dapm;
|
||||
|
@ -839,8 +869,8 @@ static void nau8824_eject_jack(struct nau8824 *nau8824)
|
|||
/* Clear all interruption status */
|
||||
nau8824_int_status_clear_all(regmap);
|
||||
|
||||
snd_soc_dapm_disable_pin(dapm, "SAR");
|
||||
snd_soc_dapm_disable_pin(dapm, "MICBIAS");
|
||||
nau8824_dapm_disable_pin(nau8824, "SAR");
|
||||
nau8824_dapm_disable_pin(nau8824, "MICBIAS");
|
||||
snd_soc_dapm_sync(dapm);
|
||||
|
||||
/* Enable the insertion interruption, disable the ejection
|
||||
|
@ -870,8 +900,8 @@ static void nau8824_jdet_work(struct work_struct *work)
|
|||
struct regmap *regmap = nau8824->regmap;
|
||||
int adc_value, event = 0, event_mask = 0;
|
||||
|
||||
snd_soc_dapm_force_enable_pin(dapm, "MICBIAS");
|
||||
snd_soc_dapm_force_enable_pin(dapm, "SAR");
|
||||
nau8824_dapm_enable_pin(nau8824, "MICBIAS");
|
||||
nau8824_dapm_enable_pin(nau8824, "SAR");
|
||||
snd_soc_dapm_sync(dapm);
|
||||
|
||||
msleep(100);
|
||||
|
@ -882,8 +912,8 @@ static void nau8824_jdet_work(struct work_struct *work)
|
|||
if (adc_value < HEADSET_SARADC_THD) {
|
||||
event |= SND_JACK_HEADPHONE;
|
||||
|
||||
snd_soc_dapm_disable_pin(dapm, "SAR");
|
||||
snd_soc_dapm_disable_pin(dapm, "MICBIAS");
|
||||
nau8824_dapm_disable_pin(nau8824, "SAR");
|
||||
nau8824_dapm_disable_pin(nau8824, "MICBIAS");
|
||||
snd_soc_dapm_sync(dapm);
|
||||
} else {
|
||||
event |= SND_JACK_HEADSET;
|
||||
|
|
|
@ -910,13 +910,21 @@ static int rt5682_headset_detect(struct snd_soc_component *component,
|
|||
int jack_insert)
|
||||
{
|
||||
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
|
||||
struct snd_soc_dapm_context *dapm =
|
||||
snd_soc_component_get_dapm(component);
|
||||
unsigned int val, count;
|
||||
|
||||
if (jack_insert) {
|
||||
snd_soc_dapm_force_enable_pin(dapm, "CBJ Power");
|
||||
snd_soc_dapm_sync(dapm);
|
||||
|
||||
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
|
||||
RT5682_PWR_VREF2 | RT5682_PWR_MB,
|
||||
RT5682_PWR_VREF2 | RT5682_PWR_MB);
|
||||
snd_soc_component_update_bits(component,
|
||||
RT5682_PWR_ANLG_1, RT5682_PWR_FV2, 0);
|
||||
usleep_range(15000, 20000);
|
||||
snd_soc_component_update_bits(component,
|
||||
RT5682_PWR_ANLG_1, RT5682_PWR_FV2, RT5682_PWR_FV2);
|
||||
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_3,
|
||||
RT5682_PWR_CBJ, RT5682_PWR_CBJ);
|
||||
|
||||
snd_soc_component_update_bits(component, RT5682_CBJ_CTRL_1,
|
||||
RT5682_TRIG_JD_MASK, RT5682_TRIG_JD_HIGH);
|
||||
|
||||
|
@ -944,8 +952,10 @@ static int rt5682_headset_detect(struct snd_soc_component *component,
|
|||
rt5682_enable_push_button_irq(component, false);
|
||||
snd_soc_component_update_bits(component, RT5682_CBJ_CTRL_1,
|
||||
RT5682_TRIG_JD_MASK, RT5682_TRIG_JD_LOW);
|
||||
snd_soc_dapm_disable_pin(dapm, "CBJ Power");
|
||||
snd_soc_dapm_sync(dapm);
|
||||
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_1,
|
||||
RT5682_PWR_VREF2 | RT5682_PWR_MB, 0);
|
||||
snd_soc_component_update_bits(component, RT5682_PWR_ANLG_3,
|
||||
RT5682_PWR_CBJ, 0);
|
||||
|
||||
rt5682->jack_type = 0;
|
||||
}
|
||||
|
@ -1198,7 +1208,7 @@ static int set_filter_clk(struct snd_soc_dapm_widget *w,
|
|||
struct snd_soc_component *component =
|
||||
snd_soc_dapm_to_component(w->dapm);
|
||||
struct rt5682_priv *rt5682 = snd_soc_component_get_drvdata(component);
|
||||
int ref, val, reg, sft, mask, idx = -EINVAL;
|
||||
int ref, val, reg, idx = -EINVAL;
|
||||
static const int div_f[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48};
|
||||
static const int div_o[] = {1, 2, 4, 6, 8, 12, 16, 24, 32, 48};
|
||||
|
||||
|
@ -1212,15 +1222,10 @@ static int set_filter_clk(struct snd_soc_dapm_widget *w,
|
|||
|
||||
idx = rt5682_div_sel(rt5682, ref, div_f, ARRAY_SIZE(div_f));
|
||||
|
||||
if (w->shift == RT5682_PWR_ADC_S1F_BIT) {
|
||||
if (w->shift == RT5682_PWR_ADC_S1F_BIT)
|
||||
reg = RT5682_PLL_TRACK_3;
|
||||
sft = RT5682_ADC_OSR_SFT;
|
||||
mask = RT5682_ADC_OSR_MASK;
|
||||
} else {
|
||||
else
|
||||
reg = RT5682_PLL_TRACK_2;
|
||||
sft = RT5682_DAC_OSR_SFT;
|
||||
mask = RT5682_DAC_OSR_MASK;
|
||||
}
|
||||
|
||||
snd_soc_component_update_bits(component, reg,
|
||||
RT5682_FILTER_CLK_DIV_MASK, idx << RT5682_FILTER_CLK_DIV_SFT);
|
||||
|
@ -1232,7 +1237,8 @@ static int set_filter_clk(struct snd_soc_dapm_widget *w,
|
|||
}
|
||||
|
||||
snd_soc_component_update_bits(component, RT5682_ADDA_CLK_1,
|
||||
mask, idx << sft);
|
||||
RT5682_ADC_OSR_MASK | RT5682_DAC_OSR_MASK,
|
||||
(idx << RT5682_ADC_OSR_SFT) | (idx << RT5682_DAC_OSR_SFT));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1591,8 +1597,6 @@ static const struct snd_soc_dapm_widget rt5682_dapm_widgets[] = {
|
|||
0, NULL, 0),
|
||||
SND_SOC_DAPM_SUPPLY("Vref1", RT5682_PWR_ANLG_1, RT5682_PWR_VREF1_BIT, 0,
|
||||
rt5655_set_verf, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU),
|
||||
SND_SOC_DAPM_SUPPLY("Vref2", RT5682_PWR_ANLG_1, RT5682_PWR_VREF2_BIT, 0,
|
||||
rt5655_set_verf, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU),
|
||||
|
||||
/* ASRC */
|
||||
SND_SOC_DAPM_SUPPLY_S("DAC STO1 ASRC", 1, RT5682_PLL_TRACK_1,
|
||||
|
@ -1627,9 +1631,6 @@ static const struct snd_soc_dapm_widget rt5682_dapm_widgets[] = {
|
|||
SND_SOC_DAPM_PGA("BST1 CBJ", SND_SOC_NOPM,
|
||||
0, 0, NULL, 0),
|
||||
|
||||
SND_SOC_DAPM_SUPPLY("CBJ Power", RT5682_PWR_ANLG_3,
|
||||
RT5682_PWR_CBJ_BIT, 0, NULL, 0),
|
||||
|
||||
/* REC Mixer */
|
||||
SND_SOC_DAPM_MIXER("RECMIX1L", SND_SOC_NOPM, 0, 0, rt5682_rec1_l_mix,
|
||||
ARRAY_SIZE(rt5682_rec1_l_mix)),
|
||||
|
@ -1792,17 +1793,13 @@ static const struct snd_soc_dapm_route rt5682_dapm_routes[] = {
|
|||
|
||||
/*Vref*/
|
||||
{"MICBIAS1", NULL, "Vref1"},
|
||||
{"MICBIAS1", NULL, "Vref2"},
|
||||
{"MICBIAS2", NULL, "Vref1"},
|
||||
{"MICBIAS2", NULL, "Vref2"},
|
||||
|
||||
{"CLKDET SYS", NULL, "CLKDET"},
|
||||
|
||||
{"IN1P", NULL, "LDO2"},
|
||||
|
||||
{"BST1 CBJ", NULL, "IN1P"},
|
||||
{"BST1 CBJ", NULL, "CBJ Power"},
|
||||
{"CBJ Power", NULL, "Vref2"},
|
||||
|
||||
{"RECMIX1L", "CBJ Switch", "BST1 CBJ"},
|
||||
{"RECMIX1L", NULL, "RECMIX1L Power"},
|
||||
|
@ -1912,9 +1909,7 @@ static const struct snd_soc_dapm_route rt5682_dapm_routes[] = {
|
|||
{"HP Amp", NULL, "Capless"},
|
||||
{"HP Amp", NULL, "Charge Pump"},
|
||||
{"HP Amp", NULL, "CLKDET SYS"},
|
||||
{"HP Amp", NULL, "CBJ Power"},
|
||||
{"HP Amp", NULL, "Vref1"},
|
||||
{"HP Amp", NULL, "Vref2"},
|
||||
{"HPOL Playback", "Switch", "HP Amp"},
|
||||
{"HPOR Playback", "Switch", "HP Amp"},
|
||||
{"HPOL", NULL, "HPOL Playback"},
|
||||
|
@ -2303,16 +2298,13 @@ static int rt5682_set_bias_level(struct snd_soc_component *component,
|
|||
switch (level) {
|
||||
case SND_SOC_BIAS_PREPARE:
|
||||
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_1,
|
||||
RT5682_PWR_MB | RT5682_PWR_BG,
|
||||
RT5682_PWR_MB | RT5682_PWR_BG);
|
||||
RT5682_PWR_BG, RT5682_PWR_BG);
|
||||
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
|
||||
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO,
|
||||
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO);
|
||||
break;
|
||||
|
||||
case SND_SOC_BIAS_STANDBY:
|
||||
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_1,
|
||||
RT5682_PWR_MB, RT5682_PWR_MB);
|
||||
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
|
||||
RT5682_DIG_GATE_CTRL, RT5682_DIG_GATE_CTRL);
|
||||
break;
|
||||
|
@ -2320,7 +2312,7 @@ static int rt5682_set_bias_level(struct snd_soc_component *component,
|
|||
regmap_update_bits(rt5682->regmap, RT5682_PWR_DIG_1,
|
||||
RT5682_DIG_GATE_CTRL | RT5682_PWR_LDO, 0);
|
||||
regmap_update_bits(rt5682->regmap, RT5682_PWR_ANLG_1,
|
||||
RT5682_PWR_MB | RT5682_PWR_BG, 0);
|
||||
RT5682_PWR_BG, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
@ -2363,6 +2355,8 @@ static int rt5682_resume(struct snd_soc_component *component)
|
|||
regcache_cache_only(rt5682->regmap, false);
|
||||
regcache_sync(rt5682->regmap);
|
||||
|
||||
rt5682_irq(0, rt5682);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* Copyright 2011 NW Digital Radio
|
||||
*
|
||||
* Author: Jeremy McDermond <nh6z@nh6z.net>
|
||||
* Author: Annaliese McDermond <nh6z@nh6z.net>
|
||||
*
|
||||
* Based on sound/soc/codecs/wm8974 and TI driver for kernel 2.6.27.
|
||||
*
|
||||
|
@ -72,5 +72,5 @@ static struct i2c_driver aic32x4_i2c_driver = {
|
|||
module_i2c_driver(aic32x4_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC TLV320AIC32x4 codec driver I2C");
|
||||
MODULE_AUTHOR("Jeremy McDermond <nh6z@nh6z.net>");
|
||||
MODULE_AUTHOR("Annaliese McDermond <nh6z@nh6z.net>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* Copyright 2011 NW Digital Radio
|
||||
*
|
||||
* Author: Jeremy McDermond <nh6z@nh6z.net>
|
||||
* Author: Annaliese McDermond <nh6z@nh6z.net>
|
||||
*
|
||||
* Based on sound/soc/codecs/wm8974 and TI driver for kernel 2.6.27.
|
||||
*
|
||||
|
@ -74,5 +74,5 @@ static struct spi_driver aic32x4_spi_driver = {
|
|||
module_spi_driver(aic32x4_spi_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC TLV320AIC32x4 codec driver SPI");
|
||||
MODULE_AUTHOR("Jeremy McDermond <nh6z@nh6z.net>");
|
||||
MODULE_AUTHOR("Annaliese McDermond <nh6z@nh6z.net>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -490,6 +490,8 @@ static const struct snd_soc_dapm_widget aic32x4_dapm_widgets[] = {
|
|||
SND_SOC_DAPM_INPUT("IN2_R"),
|
||||
SND_SOC_DAPM_INPUT("IN3_L"),
|
||||
SND_SOC_DAPM_INPUT("IN3_R"),
|
||||
SND_SOC_DAPM_INPUT("CM_L"),
|
||||
SND_SOC_DAPM_INPUT("CM_R"),
|
||||
};
|
||||
|
||||
static const struct snd_soc_dapm_route aic32x4_dapm_routes[] = {
|
||||
|
|
|
@ -1609,7 +1609,6 @@ static int aic3x_probe(struct snd_soc_component *component)
|
|||
struct aic3x_priv *aic3x = snd_soc_component_get_drvdata(component);
|
||||
int ret, i;
|
||||
|
||||
INIT_LIST_HEAD(&aic3x->list);
|
||||
aic3x->component = component;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++) {
|
||||
|
@ -1873,6 +1872,7 @@ static int aic3x_i2c_probe(struct i2c_client *i2c,
|
|||
if (ret != 0)
|
||||
goto err_gpio;
|
||||
|
||||
INIT_LIST_HEAD(&aic3x->list);
|
||||
list_add(&aic3x->list, &reset_list);
|
||||
|
||||
return 0;
|
||||
|
@ -1889,6 +1889,8 @@ static int aic3x_i2c_remove(struct i2c_client *client)
|
|||
{
|
||||
struct aic3x_priv *aic3x = i2c_get_clientdata(client);
|
||||
|
||||
list_del(&aic3x->list);
|
||||
|
||||
if (gpio_is_valid(aic3x->gpio_reset) &&
|
||||
!aic3x_is_shared_reset(aic3x)) {
|
||||
gpio_set_value(aic3x->gpio_reset, 0);
|
||||
|
|
|
@ -2905,6 +2905,8 @@ int wm_adsp2_event(struct snd_soc_dapm_widget *w,
|
|||
if (wm_adsp_fw[dsp->fw].num_caps != 0)
|
||||
wm_adsp_buffer_free(dsp);
|
||||
|
||||
dsp->fatal_error = false;
|
||||
|
||||
mutex_unlock(&dsp->pwr_lock);
|
||||
|
||||
adsp_dbg(dsp, "Execution stopped\n");
|
||||
|
@ -3000,6 +3002,9 @@ static int wm_adsp_compr_attach(struct wm_adsp_compr *compr)
|
|||
{
|
||||
struct wm_adsp_compr_buf *buf = NULL, *tmp;
|
||||
|
||||
if (compr->dsp->fatal_error)
|
||||
return -EINVAL;
|
||||
|
||||
list_for_each_entry(tmp, &compr->dsp->buffer_list, list) {
|
||||
if (!tmp->name || !strcmp(compr->name, tmp->name)) {
|
||||
buf = tmp;
|
||||
|
@ -3535,11 +3540,11 @@ static int wm_adsp_buffer_get_error(struct wm_adsp_compr_buf *buf)
|
|||
|
||||
ret = wm_adsp_buffer_read(buf, HOST_BUFFER_FIELD(error), &buf->error);
|
||||
if (ret < 0) {
|
||||
adsp_err(buf->dsp, "Failed to check buffer error: %d\n", ret);
|
||||
compr_err(buf, "Failed to check buffer error: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
if (buf->error != 0) {
|
||||
adsp_err(buf->dsp, "Buffer error occurred: %d\n", buf->error);
|
||||
compr_err(buf, "Buffer error occurred: %d\n", buf->error);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
|
@ -3571,8 +3576,6 @@ int wm_adsp_compr_trigger(struct snd_compr_stream *stream, int cmd)
|
|||
if (ret < 0)
|
||||
break;
|
||||
|
||||
wm_adsp_buffer_clear(compr->buf);
|
||||
|
||||
/* Trigger the IRQ at one fragment of data */
|
||||
ret = wm_adsp_buffer_write(compr->buf,
|
||||
HOST_BUFFER_FIELD(high_water_mark),
|
||||
|
@ -3584,6 +3587,8 @@ int wm_adsp_compr_trigger(struct snd_compr_stream *stream, int cmd)
|
|||
}
|
||||
break;
|
||||
case SNDRV_PCM_TRIGGER_STOP:
|
||||
if (wm_adsp_compr_attached(compr))
|
||||
wm_adsp_buffer_clear(compr->buf);
|
||||
break;
|
||||
default:
|
||||
ret = -EINVAL;
|
||||
|
@ -3917,22 +3922,40 @@ int wm_adsp2_lock(struct wm_adsp *dsp, unsigned int lock_regions)
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(wm_adsp2_lock);
|
||||
|
||||
static void wm_adsp_fatal_error(struct wm_adsp *dsp)
|
||||
{
|
||||
struct wm_adsp_compr *compr;
|
||||
|
||||
dsp->fatal_error = true;
|
||||
|
||||
list_for_each_entry(compr, &dsp->compr_list, list) {
|
||||
if (compr->stream) {
|
||||
snd_compr_stop_error(compr->stream,
|
||||
SNDRV_PCM_STATE_XRUN);
|
||||
snd_compr_fragment_elapsed(compr->stream);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
irqreturn_t wm_adsp2_bus_error(struct wm_adsp *dsp)
|
||||
{
|
||||
unsigned int val;
|
||||
struct regmap *regmap = dsp->regmap;
|
||||
int ret = 0;
|
||||
|
||||
mutex_lock(&dsp->pwr_lock);
|
||||
|
||||
ret = regmap_read(regmap, dsp->base + ADSP2_LOCK_REGION_CTRL, &val);
|
||||
if (ret) {
|
||||
adsp_err(dsp,
|
||||
"Failed to read Region Lock Ctrl register: %d\n", ret);
|
||||
return IRQ_HANDLED;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (val & ADSP2_WDT_TIMEOUT_STS_MASK) {
|
||||
adsp_err(dsp, "watchdog timeout error\n");
|
||||
wm_adsp_stop_watchdog(dsp);
|
||||
wm_adsp_fatal_error(dsp);
|
||||
}
|
||||
|
||||
if (val & (ADSP2_SLAVE_ERR_MASK | ADSP2_REGION_LOCK_ERR_MASK)) {
|
||||
|
@ -3946,7 +3969,7 @@ irqreturn_t wm_adsp2_bus_error(struct wm_adsp *dsp)
|
|||
adsp_err(dsp,
|
||||
"Failed to read Bus Err Addr register: %d\n",
|
||||
ret);
|
||||
return IRQ_HANDLED;
|
||||
goto error;
|
||||
}
|
||||
|
||||
adsp_err(dsp, "bus error address = 0x%x\n",
|
||||
|
@ -3959,7 +3982,7 @@ irqreturn_t wm_adsp2_bus_error(struct wm_adsp *dsp)
|
|||
adsp_err(dsp,
|
||||
"Failed to read Pmem Xmem Err Addr register: %d\n",
|
||||
ret);
|
||||
return IRQ_HANDLED;
|
||||
goto error;
|
||||
}
|
||||
|
||||
adsp_err(dsp, "xmem error address = 0x%x\n",
|
||||
|
@ -3972,6 +3995,9 @@ irqreturn_t wm_adsp2_bus_error(struct wm_adsp *dsp)
|
|||
regmap_update_bits(regmap, dsp->base + ADSP2_LOCK_REGION_CTRL,
|
||||
ADSP2_CTRL_ERR_EINT, ADSP2_CTRL_ERR_EINT);
|
||||
|
||||
error:
|
||||
mutex_unlock(&dsp->pwr_lock);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(wm_adsp2_bus_error);
|
||||
|
|
|
@ -85,6 +85,7 @@ struct wm_adsp {
|
|||
bool preloaded;
|
||||
bool booted;
|
||||
bool running;
|
||||
bool fatal_error;
|
||||
|
||||
struct list_head ctl_list;
|
||||
|
||||
|
|
|
@ -445,6 +445,19 @@ struct dma_chan *fsl_asrc_get_dma_channel(struct fsl_asrc_pair *pair, bool dir)
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(fsl_asrc_get_dma_channel);
|
||||
|
||||
static int fsl_asrc_dai_startup(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct fsl_asrc *asrc_priv = snd_soc_dai_get_drvdata(dai);
|
||||
|
||||
/* Odd channel number is not valid for older ASRC (channel_bits==3) */
|
||||
if (asrc_priv->channel_bits == 3)
|
||||
snd_pcm_hw_constraint_step(substream->runtime, 0,
|
||||
SNDRV_PCM_HW_PARAM_CHANNELS, 2);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int fsl_asrc_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai)
|
||||
|
@ -539,6 +552,7 @@ static int fsl_asrc_dai_trigger(struct snd_pcm_substream *substream, int cmd,
|
|||
}
|
||||
|
||||
static const struct snd_soc_dai_ops fsl_asrc_dai_ops = {
|
||||
.startup = fsl_asrc_dai_startup,
|
||||
.hw_params = fsl_asrc_dai_hw_params,
|
||||
.hw_free = fsl_asrc_dai_hw_free,
|
||||
.trigger = fsl_asrc_dai_trigger,
|
||||
|
|
|
@ -54,6 +54,8 @@ struct fsl_esai {
|
|||
u32 fifo_depth;
|
||||
u32 slot_width;
|
||||
u32 slots;
|
||||
u32 tx_mask;
|
||||
u32 rx_mask;
|
||||
u32 hck_rate[2];
|
||||
u32 sck_rate[2];
|
||||
bool hck_dir[2];
|
||||
|
@ -361,21 +363,13 @@ static int fsl_esai_set_dai_tdm_slot(struct snd_soc_dai *dai, u32 tx_mask,
|
|||
regmap_update_bits(esai_priv->regmap, REG_ESAI_TCCR,
|
||||
ESAI_xCCR_xDC_MASK, ESAI_xCCR_xDC(slots));
|
||||
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMA,
|
||||
ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(tx_mask));
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_TSMB,
|
||||
ESAI_xSMB_xS_MASK, ESAI_xSMB_xS(tx_mask));
|
||||
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_RCCR,
|
||||
ESAI_xCCR_xDC_MASK, ESAI_xCCR_xDC(slots));
|
||||
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMA,
|
||||
ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(rx_mask));
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_RSMB,
|
||||
ESAI_xSMB_xS_MASK, ESAI_xSMB_xS(rx_mask));
|
||||
|
||||
esai_priv->slot_width = slot_width;
|
||||
esai_priv->slots = slots;
|
||||
esai_priv->tx_mask = tx_mask;
|
||||
esai_priv->rx_mask = rx_mask;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -596,6 +590,7 @@ static int fsl_esai_trigger(struct snd_pcm_substream *substream, int cmd,
|
|||
bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
|
||||
u8 i, channels = substream->runtime->channels;
|
||||
u32 pins = DIV_ROUND_UP(channels, esai_priv->slots);
|
||||
u32 mask;
|
||||
|
||||
switch (cmd) {
|
||||
case SNDRV_PCM_TRIGGER_START:
|
||||
|
@ -608,15 +603,38 @@ static int fsl_esai_trigger(struct snd_pcm_substream *substream, int cmd,
|
|||
for (i = 0; tx && i < channels; i++)
|
||||
regmap_write(esai_priv->regmap, REG_ESAI_ETDR, 0x0);
|
||||
|
||||
/*
|
||||
* When set the TE/RE in the end of enablement flow, there
|
||||
* will be channel swap issue for multi data line case.
|
||||
* In order to workaround this issue, we switch the bit
|
||||
* enablement sequence to below sequence
|
||||
* 1) clear the xSMB & xSMA: which is done in probe and
|
||||
* stop state.
|
||||
* 2) set TE/RE
|
||||
* 3) set xSMB
|
||||
* 4) set xSMA: xSMA is the last one in this flow, which
|
||||
* will trigger esai to start.
|
||||
*/
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xCR(tx),
|
||||
tx ? ESAI_xCR_TE_MASK : ESAI_xCR_RE_MASK,
|
||||
tx ? ESAI_xCR_TE(pins) : ESAI_xCR_RE(pins));
|
||||
mask = tx ? esai_priv->tx_mask : esai_priv->rx_mask;
|
||||
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xSMB(tx),
|
||||
ESAI_xSMB_xS_MASK, ESAI_xSMB_xS(mask));
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xSMA(tx),
|
||||
ESAI_xSMA_xS_MASK, ESAI_xSMA_xS(mask));
|
||||
|
||||
break;
|
||||
case SNDRV_PCM_TRIGGER_SUSPEND:
|
||||
case SNDRV_PCM_TRIGGER_STOP:
|
||||
case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xCR(tx),
|
||||
tx ? ESAI_xCR_TE_MASK : ESAI_xCR_RE_MASK, 0);
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xSMA(tx),
|
||||
ESAI_xSMA_xS_MASK, 0);
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xSMB(tx),
|
||||
ESAI_xSMB_xS_MASK, 0);
|
||||
|
||||
/* Disable and reset FIFO */
|
||||
regmap_update_bits(esai_priv->regmap, REG_ESAI_xFCR(tx),
|
||||
|
@ -906,6 +924,15 @@ static int fsl_esai_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
esai_priv->tx_mask = 0xFFFFFFFF;
|
||||
esai_priv->rx_mask = 0xFFFFFFFF;
|
||||
|
||||
/* Clear the TSMA, TSMB, RSMA, RSMB */
|
||||
regmap_write(esai_priv->regmap, REG_ESAI_TSMA, 0);
|
||||
regmap_write(esai_priv->regmap, REG_ESAI_TSMB, 0);
|
||||
regmap_write(esai_priv->regmap, REG_ESAI_RSMA, 0);
|
||||
regmap_write(esai_priv->regmap, REG_ESAI_RSMB, 0);
|
||||
|
||||
ret = devm_snd_soc_register_component(&pdev->dev, &fsl_esai_component,
|
||||
&fsl_esai_dai, 1);
|
||||
if (ret) {
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#include <linux/string.h>
|
||||
#include <sound/simple_card_utils.h>
|
||||
|
||||
#define DPCM_SELECTABLE 1
|
||||
|
||||
struct graph_priv {
|
||||
struct snd_soc_card snd_card;
|
||||
struct graph_dai_props {
|
||||
|
@ -440,6 +442,7 @@ static int graph_for_each_link(struct graph_priv *priv,
|
|||
struct device_node *codec_port;
|
||||
struct device_node *codec_port_old = NULL;
|
||||
struct asoc_simple_card_data adata;
|
||||
uintptr_t dpcm_selectable = (uintptr_t)of_device_get_match_data(dev);
|
||||
int rc, ret;
|
||||
|
||||
/* loop for all listed CPU port */
|
||||
|
@ -470,8 +473,9 @@ static int graph_for_each_link(struct graph_priv *priv,
|
|||
* if Codec port has many endpoints,
|
||||
* or has convert-xxx property
|
||||
*/
|
||||
if ((of_get_child_count(codec_port) > 1) ||
|
||||
adata.convert_rate || adata.convert_channels)
|
||||
if (dpcm_selectable &&
|
||||
((of_get_child_count(codec_port) > 1) ||
|
||||
adata.convert_rate || adata.convert_channels))
|
||||
ret = func_dpcm(priv, cpu_ep, codec_ep, li,
|
||||
(codec_port_old == codec_port));
|
||||
/* else normal sound */
|
||||
|
@ -732,7 +736,8 @@ static int graph_remove(struct platform_device *pdev)
|
|||
|
||||
static const struct of_device_id graph_of_match[] = {
|
||||
{ .compatible = "audio-graph-card", },
|
||||
{ .compatible = "audio-graph-scu-card", },
|
||||
{ .compatible = "audio-graph-scu-card",
|
||||
.data = (void *)DPCM_SELECTABLE },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, graph_of_match);
|
||||
|
|
|
@ -9,12 +9,15 @@
|
|||
#include <linux/device.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/string.h>
|
||||
#include <sound/simple_card.h>
|
||||
#include <sound/soc-dai.h>
|
||||
#include <sound/soc.h>
|
||||
|
||||
#define DPCM_SELECTABLE 1
|
||||
|
||||
struct simple_priv {
|
||||
struct snd_soc_card snd_card;
|
||||
struct simple_dai_props {
|
||||
|
@ -441,6 +444,7 @@ static int simple_for_each_link(struct simple_priv *priv,
|
|||
struct device *dev = simple_priv_to_dev(priv);
|
||||
struct device_node *top = dev->of_node;
|
||||
struct device_node *node;
|
||||
uintptr_t dpcm_selectable = (uintptr_t)of_device_get_match_data(dev);
|
||||
bool is_top = 0;
|
||||
int ret = 0;
|
||||
|
||||
|
@ -480,8 +484,9 @@ static int simple_for_each_link(struct simple_priv *priv,
|
|||
* if it has many CPUs,
|
||||
* or has convert-xxx property
|
||||
*/
|
||||
if (num > 2 ||
|
||||
adata.convert_rate || adata.convert_channels)
|
||||
if (dpcm_selectable &&
|
||||
(num > 2 ||
|
||||
adata.convert_rate || adata.convert_channels))
|
||||
ret = func_dpcm(priv, np, codec, li, is_top);
|
||||
/* else normal sound */
|
||||
else
|
||||
|
@ -822,7 +827,8 @@ static int simple_remove(struct platform_device *pdev)
|
|||
|
||||
static const struct of_device_id simple_of_match[] = {
|
||||
{ .compatible = "simple-audio-card", },
|
||||
{ .compatible = "simple-scu-audio-card", },
|
||||
{ .compatible = "simple-scu-audio-card",
|
||||
.data = (void *)DPCM_SELECTABLE },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, simple_of_match);
|
||||
|
|
|
@ -706,9 +706,17 @@ static int sst_soc_probe(struct snd_soc_component *component)
|
|||
return sst_dsp_init_v2_dpcm(component);
|
||||
}
|
||||
|
||||
static void sst_soc_remove(struct snd_soc_component *component)
|
||||
{
|
||||
struct sst_data *drv = dev_get_drvdata(component->dev);
|
||||
|
||||
drv->soc_card = NULL;
|
||||
}
|
||||
|
||||
static const struct snd_soc_component_driver sst_soc_platform_drv = {
|
||||
.name = DRV_NAME,
|
||||
.probe = sst_soc_probe,
|
||||
.remove = sst_soc_remove,
|
||||
.ops = &sst_platform_ops,
|
||||
.compr_ops = &sst_platform_compr_ops,
|
||||
.pcm_new = sst_pcm_new,
|
||||
|
|
|
@ -43,6 +43,7 @@ struct cht_mc_private {
|
|||
struct clk *mclk;
|
||||
struct snd_soc_jack jack;
|
||||
bool ts3a227e_present;
|
||||
int quirks;
|
||||
};
|
||||
|
||||
static int platform_clock_control(struct snd_soc_dapm_widget *w,
|
||||
|
@ -54,6 +55,10 @@ static int platform_clock_control(struct snd_soc_dapm_widget *w,
|
|||
struct cht_mc_private *ctx = snd_soc_card_get_drvdata(card);
|
||||
int ret;
|
||||
|
||||
/* See the comment in snd_cht_mc_probe() */
|
||||
if (ctx->quirks & QUIRK_PMC_PLT_CLK_0)
|
||||
return 0;
|
||||
|
||||
codec_dai = snd_soc_card_get_codec_dai(card, CHT_CODEC_DAI);
|
||||
if (!codec_dai) {
|
||||
dev_err(card->dev, "Codec dai not found; Unable to set platform clock\n");
|
||||
|
@ -223,6 +228,10 @@ static int cht_codec_init(struct snd_soc_pcm_runtime *runtime)
|
|||
"jack detection gpios not added, error %d\n", ret);
|
||||
}
|
||||
|
||||
/* See the comment in snd_cht_mc_probe() */
|
||||
if (ctx->quirks & QUIRK_PMC_PLT_CLK_0)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
* The firmware might enable the clock at
|
||||
* boot (this information may or may not
|
||||
|
@ -423,16 +432,15 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||
const char *mclk_name;
|
||||
struct snd_soc_acpi_mach *mach;
|
||||
const char *platform_name;
|
||||
int quirks = 0;
|
||||
|
||||
dmi_id = dmi_first_match(cht_max98090_quirk_table);
|
||||
if (dmi_id)
|
||||
quirks = (unsigned long)dmi_id->driver_data;
|
||||
|
||||
drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
|
||||
if (!drv)
|
||||
return -ENOMEM;
|
||||
|
||||
dmi_id = dmi_first_match(cht_max98090_quirk_table);
|
||||
if (dmi_id)
|
||||
drv->quirks = (unsigned long)dmi_id->driver_data;
|
||||
|
||||
drv->ts3a227e_present = acpi_dev_found("104C227E");
|
||||
if (!drv->ts3a227e_present) {
|
||||
/* no need probe TI jack detection chip */
|
||||
|
@ -458,7 +466,7 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||
snd_soc_card_cht.dev = &pdev->dev;
|
||||
snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
|
||||
|
||||
if (quirks & QUIRK_PMC_PLT_CLK_0)
|
||||
if (drv->quirks & QUIRK_PMC_PLT_CLK_0)
|
||||
mclk_name = "pmc_plt_clk_0";
|
||||
else
|
||||
mclk_name = "pmc_plt_clk_3";
|
||||
|
@ -471,6 +479,21 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(drv->mclk);
|
||||
}
|
||||
|
||||
/*
|
||||
* Boards which have the MAX98090's clk connected to clk_0 do not seem
|
||||
* to like it if we muck with the clock. If we disable the clock when
|
||||
* it is unused we get "max98090 i2c-193C9890:00: PLL unlocked" errors
|
||||
* and the PLL never seems to lock again.
|
||||
* So for these boards we enable it here once and leave it at that.
|
||||
*/
|
||||
if (drv->quirks & QUIRK_PMC_PLT_CLK_0) {
|
||||
ret_val = clk_prepare_enable(drv->mclk);
|
||||
if (ret_val < 0) {
|
||||
dev_err(&pdev->dev, "MCLK enable error: %d\n", ret_val);
|
||||
return ret_val;
|
||||
}
|
||||
}
|
||||
|
||||
ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
|
||||
if (ret_val) {
|
||||
dev_err(&pdev->dev,
|
||||
|
@ -481,11 +504,23 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
|
|||
return ret_val;
|
||||
}
|
||||
|
||||
static int snd_cht_mc_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_soc_card *card = platform_get_drvdata(pdev);
|
||||
struct cht_mc_private *ctx = snd_soc_card_get_drvdata(card);
|
||||
|
||||
if (ctx->quirks & QUIRK_PMC_PLT_CLK_0)
|
||||
clk_disable_unprepare(ctx->mclk);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver snd_cht_mc_driver = {
|
||||
.driver = {
|
||||
.name = "cht-bsw-max98090",
|
||||
},
|
||||
.probe = snd_cht_mc_probe,
|
||||
.remove = snd_cht_mc_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(snd_cht_mc_driver)
|
||||
|
|
|
@ -405,7 +405,7 @@ static const struct snd_pcm_hw_constraint_list constraints_dmic_channels = {
|
|||
};
|
||||
|
||||
static const unsigned int dmic_2ch[] = {
|
||||
4,
|
||||
2,
|
||||
};
|
||||
|
||||
static const struct snd_pcm_hw_constraint_list constraints_dmic_2ch = {
|
||||
|
|
|
@ -483,6 +483,7 @@ static void skl_set_base_module_format(struct skl_sst *ctx,
|
|||
base_cfg->audio_fmt.bit_depth = format->bit_depth;
|
||||
base_cfg->audio_fmt.valid_bit_depth = format->valid_bit_depth;
|
||||
base_cfg->audio_fmt.ch_cfg = format->ch_cfg;
|
||||
base_cfg->audio_fmt.sample_type = format->sample_type;
|
||||
|
||||
dev_dbg(ctx->dev, "bit_depth=%x valid_bd=%x ch_config=%x\n",
|
||||
format->bit_depth, format->valid_bit_depth,
|
||||
|
|
|
@ -181,6 +181,7 @@ int skl_pcm_link_dma_prepare(struct device *dev, struct skl_pipe_params *params)
|
|||
struct hdac_stream *hstream;
|
||||
struct hdac_ext_stream *stream;
|
||||
struct hdac_ext_link *link;
|
||||
unsigned char stream_tag;
|
||||
|
||||
hstream = snd_hdac_get_stream(bus, params->stream,
|
||||
params->link_dma_id + 1);
|
||||
|
@ -199,10 +200,13 @@ int skl_pcm_link_dma_prepare(struct device *dev, struct skl_pipe_params *params)
|
|||
|
||||
snd_hdac_ext_link_stream_setup(stream, format_val);
|
||||
|
||||
list_for_each_entry(link, &bus->hlink_list, list) {
|
||||
if (link->index == params->link_index)
|
||||
snd_hdac_ext_link_set_stream_id(link,
|
||||
hstream->stream_tag);
|
||||
stream_tag = hstream->stream_tag;
|
||||
if (stream->hstream.direction == SNDRV_PCM_STREAM_PLAYBACK) {
|
||||
list_for_each_entry(link, &bus->hlink_list, list) {
|
||||
if (link->index == params->link_index)
|
||||
snd_hdac_ext_link_set_stream_id(link,
|
||||
stream_tag);
|
||||
}
|
||||
}
|
||||
|
||||
stream->link_prepared = 1;
|
||||
|
@ -645,6 +649,7 @@ static int skl_link_hw_free(struct snd_pcm_substream *substream,
|
|||
struct hdac_ext_stream *link_dev =
|
||||
snd_soc_dai_get_dma_data(dai, substream);
|
||||
struct hdac_ext_link *link;
|
||||
unsigned char stream_tag;
|
||||
|
||||
dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
|
||||
|
||||
|
@ -654,7 +659,11 @@ static int skl_link_hw_free(struct snd_pcm_substream *substream,
|
|||
if (!link)
|
||||
return -EINVAL;
|
||||
|
||||
snd_hdac_ext_link_clear_stream_id(link, hdac_stream(link_dev)->stream_tag);
|
||||
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
||||
stream_tag = hdac_stream(link_dev)->stream_tag;
|
||||
snd_hdac_ext_link_clear_stream_id(link, stream_tag);
|
||||
}
|
||||
|
||||
snd_hdac_ext_stream_release(link_dev, HDAC_EXT_STREAM_TYPE_LINK);
|
||||
return 0;
|
||||
}
|
||||
|
@ -1453,13 +1462,20 @@ static int skl_platform_soc_probe(struct snd_soc_component *component)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void skl_pcm_remove(struct snd_soc_component *component)
|
||||
{
|
||||
/* remove topology */
|
||||
snd_soc_tplg_component_remove(component, SND_SOC_TPLG_INDEX_ALL);
|
||||
}
|
||||
|
||||
static const struct snd_soc_component_driver skl_component = {
|
||||
.name = "pcm",
|
||||
.probe = skl_platform_soc_probe,
|
||||
.remove = skl_pcm_remove,
|
||||
.ops = &skl_platform_ops,
|
||||
.pcm_new = skl_pcm_new,
|
||||
.pcm_free = skl_pcm_free,
|
||||
.ignore_module_refcount = 1, /* do not increase the refcount in core */
|
||||
.module_get_upon_open = 1, /* increment refcount when a pcm is opened */
|
||||
};
|
||||
|
||||
int skl_platform_register(struct device *dev)
|
||||
|
|
|
@ -49,6 +49,7 @@ enum bt_sco_state {
|
|||
BT_SCO_STATE_IDLE,
|
||||
BT_SCO_STATE_RUNNING,
|
||||
BT_SCO_STATE_ENDING,
|
||||
BT_SCO_STATE_LOOPBACK,
|
||||
};
|
||||
|
||||
enum bt_sco_direct {
|
||||
|
@ -486,7 +487,8 @@ static irqreturn_t mtk_btcvsd_snd_irq_handler(int irq_id, void *dev)
|
|||
if (bt->rx->state != BT_SCO_STATE_RUNNING &&
|
||||
bt->rx->state != BT_SCO_STATE_ENDING &&
|
||||
bt->tx->state != BT_SCO_STATE_RUNNING &&
|
||||
bt->tx->state != BT_SCO_STATE_ENDING) {
|
||||
bt->tx->state != BT_SCO_STATE_ENDING &&
|
||||
bt->tx->state != BT_SCO_STATE_LOOPBACK) {
|
||||
dev_warn(bt->dev, "%s(), in idle state: rx->state: %d, tx->state: %d\n",
|
||||
__func__, bt->rx->state, bt->tx->state);
|
||||
goto irq_handler_exit;
|
||||
|
@ -512,6 +514,42 @@ static irqreturn_t mtk_btcvsd_snd_irq_handler(int irq_id, void *dev)
|
|||
buf_cnt_tx = btsco_packet_info[packet_type][2];
|
||||
buf_cnt_rx = btsco_packet_info[packet_type][3];
|
||||
|
||||
if (bt->tx->state == BT_SCO_STATE_LOOPBACK) {
|
||||
u8 *src, *dst;
|
||||
unsigned long connsys_addr_rx, ap_addr_rx;
|
||||
unsigned long connsys_addr_tx, ap_addr_tx;
|
||||
|
||||
connsys_addr_rx = *bt->bt_reg_pkt_r;
|
||||
ap_addr_rx = (unsigned long)bt->bt_sram_bank2_base +
|
||||
(connsys_addr_rx & 0xFFFF);
|
||||
|
||||
connsys_addr_tx = *bt->bt_reg_pkt_w;
|
||||
ap_addr_tx = (unsigned long)bt->bt_sram_bank2_base +
|
||||
(connsys_addr_tx & 0xFFFF);
|
||||
|
||||
if (connsys_addr_tx == 0xdeadfeed ||
|
||||
connsys_addr_rx == 0xdeadfeed) {
|
||||
/* bt return 0xdeadfeed if read reg during bt sleep */
|
||||
dev_warn(bt->dev, "%s(), connsys_addr_tx == 0xdeadfeed\n",
|
||||
__func__);
|
||||
goto irq_handler_exit;
|
||||
}
|
||||
|
||||
src = (u8 *)ap_addr_rx;
|
||||
dst = (u8 *)ap_addr_tx;
|
||||
|
||||
mtk_btcvsd_snd_data_transfer(BT_SCO_DIRECT_BT2ARM, src,
|
||||
bt->tx->temp_packet_buf,
|
||||
packet_length,
|
||||
packet_num);
|
||||
mtk_btcvsd_snd_data_transfer(BT_SCO_DIRECT_ARM2BT,
|
||||
bt->tx->temp_packet_buf, dst,
|
||||
packet_length,
|
||||
packet_num);
|
||||
bt->rx->rw_cnt++;
|
||||
bt->tx->rw_cnt++;
|
||||
}
|
||||
|
||||
if (bt->rx->state == BT_SCO_STATE_RUNNING ||
|
||||
bt->rx->state == BT_SCO_STATE_ENDING) {
|
||||
if (bt->rx->xrun) {
|
||||
|
@ -1067,6 +1105,33 @@ static int btcvsd_band_set(struct snd_kcontrol *kcontrol,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int btcvsd_loopback_get(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_component *cmpnt = snd_soc_kcontrol_component(kcontrol);
|
||||
struct mtk_btcvsd_snd *bt = snd_soc_component_get_drvdata(cmpnt);
|
||||
bool lpbk_en = bt->tx->state == BT_SCO_STATE_LOOPBACK;
|
||||
|
||||
ucontrol->value.integer.value[0] = lpbk_en;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int btcvsd_loopback_set(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_component *cmpnt = snd_soc_kcontrol_component(kcontrol);
|
||||
struct mtk_btcvsd_snd *bt = snd_soc_component_get_drvdata(cmpnt);
|
||||
|
||||
if (ucontrol->value.integer.value[0]) {
|
||||
mtk_btcvsd_snd_set_state(bt, bt->tx, BT_SCO_STATE_LOOPBACK);
|
||||
mtk_btcvsd_snd_set_state(bt, bt->rx, BT_SCO_STATE_LOOPBACK);
|
||||
} else {
|
||||
mtk_btcvsd_snd_set_state(bt, bt->tx, BT_SCO_STATE_RUNNING);
|
||||
mtk_btcvsd_snd_set_state(bt, bt->rx, BT_SCO_STATE_RUNNING);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int btcvsd_tx_mute_get(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
|
@ -1202,6 +1267,8 @@ static int btcvsd_tx_timestamp_get(struct snd_kcontrol *kcontrol,
|
|||
static const struct snd_kcontrol_new mtk_btcvsd_snd_controls[] = {
|
||||
SOC_ENUM_EXT("BTCVSD Band", btcvsd_enum[0],
|
||||
btcvsd_band_get, btcvsd_band_set),
|
||||
SOC_SINGLE_BOOL_EXT("BTCVSD Loopback Switch", 0,
|
||||
btcvsd_loopback_get, btcvsd_loopback_set),
|
||||
SOC_SINGLE_BOOL_EXT("BTCVSD Tx Mute Switch", 0,
|
||||
btcvsd_tx_mute_get, btcvsd_tx_mute_set),
|
||||
SOC_SINGLE_BOOL_EXT("BTCVSD Tx Irq Received Switch", 0,
|
||||
|
|
|
@ -605,6 +605,10 @@ void mt8183_mck_disable(struct mtk_base_afe *afe, int mck_id)
|
|||
int m_sel_id = mck_div[mck_id].m_sel_id;
|
||||
int div_clk_id = mck_div[mck_id].div_clk_id;
|
||||
|
||||
/* i2s5 mck not support */
|
||||
if (mck_id == MT8183_I2S5_MCK)
|
||||
return;
|
||||
|
||||
clk_disable_unprepare(afe_priv->clk[div_clk_id]);
|
||||
if (m_sel_id >= 0)
|
||||
clk_disable_unprepare(afe_priv->clk[m_sel_id]);
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "rockchip_pdm.h"
|
||||
|
||||
#define PDM_DMA_BURST_SIZE (16) /* size * width: 16*4 = 64 bytes */
|
||||
#define PDM_DMA_BURST_SIZE (8) /* size * width: 8*4 = 32 bytes */
|
||||
|
||||
struct rk_pdm_dev {
|
||||
struct device *dev;
|
||||
|
@ -208,7 +208,9 @@ static int rockchip_pdm_set_fmt(struct snd_soc_dai *cpu_dai,
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
pm_runtime_get_sync(cpu_dai->dev);
|
||||
regmap_update_bits(pdm->regmap, PDM_CLK_CTRL, mask, val);
|
||||
pm_runtime_put(cpu_dai->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1130,11 +1130,11 @@ static const struct snd_soc_dapm_widget samsung_i2s_widgets[] = {
|
|||
};
|
||||
|
||||
static const struct snd_soc_dapm_route samsung_i2s_dapm_routes[] = {
|
||||
{ "Playback Mixer", NULL, "Primary" },
|
||||
{ "Playback Mixer", NULL, "Secondary" },
|
||||
{ "Playback Mixer", NULL, "Primary Playback" },
|
||||
{ "Playback Mixer", NULL, "Secondary Playback" },
|
||||
|
||||
{ "Mixer DAI TX", NULL, "Playback Mixer" },
|
||||
{ "Playback Mixer", NULL, "Mixer DAI RX" },
|
||||
{ "Primary Capture", NULL, "Mixer DAI RX" },
|
||||
};
|
||||
|
||||
static const struct snd_soc_component_driver samsung_i2s_component = {
|
||||
|
@ -1155,7 +1155,8 @@ static int i2s_alloc_dais(struct samsung_i2s_priv *priv,
|
|||
int num_dais)
|
||||
{
|
||||
static const char *dai_names[] = { "samsung-i2s", "samsung-i2s-sec" };
|
||||
static const char *stream_names[] = { "Primary", "Secondary" };
|
||||
static const char *stream_names[] = { "Primary Playback",
|
||||
"Secondary Playback" };
|
||||
struct snd_soc_dai_driver *dai_drv;
|
||||
struct i2s_dai *dai;
|
||||
int i;
|
||||
|
@ -1201,6 +1202,7 @@ static int i2s_alloc_dais(struct samsung_i2s_priv *priv,
|
|||
dai_drv->capture.channels_max = 2;
|
||||
dai_drv->capture.rates = i2s_dai_data->pcm_rates;
|
||||
dai_drv->capture.formats = SAMSUNG_I2S_FMTS;
|
||||
dai_drv->capture.stream_name = "Primary Capture";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -91,11 +91,11 @@ static int odroid_card_be_hw_params(struct snd_pcm_substream *substream,
|
|||
return ret;
|
||||
|
||||
/*
|
||||
* We add 1 to the rclk_freq value in order to avoid too low clock
|
||||
* We add 2 to the rclk_freq value in order to avoid too low clock
|
||||
* frequency values due to the EPLL output frequency not being exact
|
||||
* multiple of the audio sampling rate.
|
||||
*/
|
||||
rclk_freq = params_rate(params) * rfs + 1;
|
||||
rclk_freq = params_rate(params) * rfs + 2;
|
||||
|
||||
ret = clk_set_rate(priv->sclk_i2s, rclk_freq);
|
||||
if (ret < 0)
|
||||
|
|
|
@ -110,6 +110,8 @@ static const struct of_device_id rsnd_of_match[] = {
|
|||
{ .compatible = "renesas,rcar_sound-gen1", .data = (void *)RSND_GEN1 },
|
||||
{ .compatible = "renesas,rcar_sound-gen2", .data = (void *)RSND_GEN2 },
|
||||
{ .compatible = "renesas,rcar_sound-gen3", .data = (void *)RSND_GEN3 },
|
||||
/* Special Handling */
|
||||
{ .compatible = "renesas,rcar_sound-r8a77990", .data = (void *)(RSND_GEN3 | RSND_SOC_E) },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, rsnd_of_match);
|
||||
|
|
|
@ -607,6 +607,8 @@ struct rsnd_priv {
|
|||
#define RSND_GEN1 (1 << 0)
|
||||
#define RSND_GEN2 (2 << 0)
|
||||
#define RSND_GEN3 (3 << 0)
|
||||
#define RSND_SOC_MASK (0xFF << 4)
|
||||
#define RSND_SOC_E (1 << 4) /* E1/E2/E3 */
|
||||
|
||||
/*
|
||||
* below value will be filled on rsnd_gen_probe()
|
||||
|
@ -679,6 +681,9 @@ struct rsnd_priv {
|
|||
#define rsnd_is_gen1(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN1)
|
||||
#define rsnd_is_gen2(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN2)
|
||||
#define rsnd_is_gen3(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN3)
|
||||
#define rsnd_is_e3(priv) (((priv)->flags & \
|
||||
(RSND_GEN_MASK | RSND_SOC_MASK)) == \
|
||||
(RSND_GEN3 | RSND_SOC_E))
|
||||
|
||||
#define rsnd_flags_has(p, f) ((p)->flags & (f))
|
||||
#define rsnd_flags_set(p, f) ((p)->flags |= (f))
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
*/
|
||||
|
||||
#include "rsnd.h"
|
||||
#include <linux/sys_soc.h>
|
||||
|
||||
#define SRC_NAME "src"
|
||||
|
||||
|
@ -135,7 +134,7 @@ unsigned int rsnd_src_get_rate(struct rsnd_priv *priv,
|
|||
return rate;
|
||||
}
|
||||
|
||||
const static u32 bsdsr_table_pattern1[] = {
|
||||
static const u32 bsdsr_table_pattern1[] = {
|
||||
0x01800000, /* 6 - 1/6 */
|
||||
0x01000000, /* 6 - 1/4 */
|
||||
0x00c00000, /* 6 - 1/3 */
|
||||
|
@ -144,7 +143,7 @@ const static u32 bsdsr_table_pattern1[] = {
|
|||
0x00400000, /* 6 - 1 */
|
||||
};
|
||||
|
||||
const static u32 bsdsr_table_pattern2[] = {
|
||||
static const u32 bsdsr_table_pattern2[] = {
|
||||
0x02400000, /* 6 - 1/6 */
|
||||
0x01800000, /* 6 - 1/4 */
|
||||
0x01200000, /* 6 - 1/3 */
|
||||
|
@ -153,7 +152,7 @@ const static u32 bsdsr_table_pattern2[] = {
|
|||
0x00600000, /* 6 - 1 */
|
||||
};
|
||||
|
||||
const static u32 bsisr_table[] = {
|
||||
static const u32 bsisr_table[] = {
|
||||
0x00100060, /* 6 - 1/6 */
|
||||
0x00100040, /* 6 - 1/4 */
|
||||
0x00100030, /* 6 - 1/3 */
|
||||
|
@ -162,7 +161,7 @@ const static u32 bsisr_table[] = {
|
|||
0x00100020, /* 6 - 1 */
|
||||
};
|
||||
|
||||
const static u32 chan288888[] = {
|
||||
static const u32 chan288888[] = {
|
||||
0x00000006, /* 1 to 2 */
|
||||
0x000001fe, /* 1 to 8 */
|
||||
0x000001fe, /* 1 to 8 */
|
||||
|
@ -171,7 +170,7 @@ const static u32 chan288888[] = {
|
|||
0x000001fe, /* 1 to 8 */
|
||||
};
|
||||
|
||||
const static u32 chan244888[] = {
|
||||
static const u32 chan244888[] = {
|
||||
0x00000006, /* 1 to 2 */
|
||||
0x0000001e, /* 1 to 4 */
|
||||
0x0000001e, /* 1 to 4 */
|
||||
|
@ -180,7 +179,7 @@ const static u32 chan244888[] = {
|
|||
0x000001fe, /* 1 to 8 */
|
||||
};
|
||||
|
||||
const static u32 chan222222[] = {
|
||||
static const u32 chan222222[] = {
|
||||
0x00000006, /* 1 to 2 */
|
||||
0x00000006, /* 1 to 2 */
|
||||
0x00000006, /* 1 to 2 */
|
||||
|
@ -189,18 +188,12 @@ const static u32 chan222222[] = {
|
|||
0x00000006, /* 1 to 2 */
|
||||
};
|
||||
|
||||
static const struct soc_device_attribute ov_soc[] = {
|
||||
{ .soc_id = "r8a77990" }, /* E3 */
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
static void rsnd_src_set_convert_rate(struct rsnd_dai_stream *io,
|
||||
struct rsnd_mod *mod)
|
||||
{
|
||||
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
|
||||
struct device *dev = rsnd_priv_to_dev(priv);
|
||||
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
|
||||
const struct soc_device_attribute *soc = soc_device_match(ov_soc);
|
||||
int is_play = rsnd_io_is_play(io);
|
||||
int use_src = 0;
|
||||
u32 fin, fout;
|
||||
|
@ -307,7 +300,7 @@ static void rsnd_src_set_convert_rate(struct rsnd_dai_stream *io,
|
|||
/*
|
||||
* E3 need to overwrite
|
||||
*/
|
||||
if (soc)
|
||||
if (rsnd_is_e3(priv))
|
||||
switch (rsnd_mod_id(mod)) {
|
||||
case 0:
|
||||
case 4:
|
||||
|
|
|
@ -947,7 +947,7 @@ static void soc_cleanup_component(struct snd_soc_component *component)
|
|||
snd_soc_dapm_free(snd_soc_component_get_dapm(component));
|
||||
soc_cleanup_component_debugfs(component);
|
||||
component->card = NULL;
|
||||
if (!component->driver->ignore_module_refcount)
|
||||
if (!component->driver->module_get_upon_open)
|
||||
module_put(component->dev->driver->owner);
|
||||
}
|
||||
|
||||
|
@ -1381,7 +1381,7 @@ static int soc_probe_component(struct snd_soc_card *card,
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (!component->driver->ignore_module_refcount &&
|
||||
if (!component->driver->module_get_upon_open &&
|
||||
!try_module_get(component->dev->driver->owner))
|
||||
return -ENODEV;
|
||||
|
||||
|
@ -2797,6 +2797,7 @@ int snd_soc_register_card(struct snd_soc_card *card)
|
|||
|
||||
ret = soc_init_dai_link(card, link);
|
||||
if (ret) {
|
||||
soc_cleanup_platform(card);
|
||||
dev_err(card->dev, "ASoC: failed to init link %s\n",
|
||||
link->name);
|
||||
mutex_unlock(&client_mutex);
|
||||
|
@ -2819,6 +2820,7 @@ int snd_soc_register_card(struct snd_soc_card *card)
|
|||
card->instantiated = 0;
|
||||
mutex_init(&card->mutex);
|
||||
mutex_init(&card->dapm_mutex);
|
||||
spin_lock_init(&card->dpcm_lock);
|
||||
|
||||
return snd_soc_bind_card(card);
|
||||
}
|
||||
|
|
|
@ -3650,6 +3650,13 @@ snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
|
|||
case snd_soc_dapm_dac:
|
||||
case snd_soc_dapm_aif_in:
|
||||
case snd_soc_dapm_pga:
|
||||
case snd_soc_dapm_buffer:
|
||||
case snd_soc_dapm_scheduler:
|
||||
case snd_soc_dapm_effect:
|
||||
case snd_soc_dapm_src:
|
||||
case snd_soc_dapm_asrc:
|
||||
case snd_soc_dapm_encoder:
|
||||
case snd_soc_dapm_decoder:
|
||||
case snd_soc_dapm_out_drv:
|
||||
case snd_soc_dapm_micbias:
|
||||
case snd_soc_dapm_line:
|
||||
|
@ -3957,6 +3964,10 @@ snd_soc_dapm_free_kcontrol(struct snd_soc_card *card,
|
|||
int count;
|
||||
|
||||
devm_kfree(card->dev, (void *)*private_value);
|
||||
|
||||
if (!w_param_text)
|
||||
return;
|
||||
|
||||
for (count = 0 ; count < num_params; count++)
|
||||
devm_kfree(card->dev, (void *)w_param_text[count]);
|
||||
devm_kfree(card->dev, w_param_text);
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include <linux/delay.h>
|
||||
#include <linux/pinctrl/consumer.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <linux/export.h>
|
||||
|
@ -463,6 +464,9 @@ static int soc_pcm_components_close(struct snd_pcm_substream *substream,
|
|||
continue;
|
||||
|
||||
component->driver->ops->close(substream);
|
||||
|
||||
if (component->driver->module_get_upon_open)
|
||||
module_put(component->dev->driver->owner);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -513,6 +517,12 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
|
|||
!component->driver->ops->open)
|
||||
continue;
|
||||
|
||||
if (component->driver->module_get_upon_open &&
|
||||
!try_module_get(component->dev->driver->owner)) {
|
||||
ret = -ENODEV;
|
||||
goto module_err;
|
||||
}
|
||||
|
||||
ret = component->driver->ops->open(substream);
|
||||
if (ret < 0) {
|
||||
dev_err(component->dev,
|
||||
|
@ -628,7 +638,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
|
|||
|
||||
component_err:
|
||||
soc_pcm_components_close(substream, component);
|
||||
|
||||
module_err:
|
||||
if (cpu_dai->driver->ops->shutdown)
|
||||
cpu_dai->driver->ops->shutdown(substream, cpu_dai);
|
||||
out:
|
||||
|
@ -954,10 +964,13 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
|
|||
codec_params = *params;
|
||||
|
||||
/* fixup params based on TDM slot masks */
|
||||
if (codec_dai->tx_mask)
|
||||
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
|
||||
codec_dai->tx_mask)
|
||||
soc_pcm_codec_params_fixup(&codec_params,
|
||||
codec_dai->tx_mask);
|
||||
if (codec_dai->rx_mask)
|
||||
|
||||
if (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
|
||||
codec_dai->rx_mask)
|
||||
soc_pcm_codec_params_fixup(&codec_params,
|
||||
codec_dai->rx_mask);
|
||||
|
||||
|
@ -1213,6 +1226,7 @@ static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
|
|||
struct snd_soc_pcm_runtime *be, int stream)
|
||||
{
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
unsigned long flags;
|
||||
|
||||
/* only add new dpcms */
|
||||
for_each_dpcm_be(fe, stream, dpcm) {
|
||||
|
@ -1228,8 +1242,10 @@ static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
|
|||
dpcm->fe = fe;
|
||||
be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
|
||||
dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
|
||||
list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
|
||||
dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
|
||||
stream ? "capture" : "playback", fe->dai_link->name,
|
||||
|
@ -1275,6 +1291,7 @@ static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
|
|||
void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
|
||||
{
|
||||
struct snd_soc_dpcm *dpcm, *d;
|
||||
unsigned long flags;
|
||||
|
||||
for_each_dpcm_be_safe(fe, stream, dpcm, d) {
|
||||
dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
|
||||
|
@ -1294,8 +1311,10 @@ void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
|
|||
#ifdef CONFIG_DEBUG_FS
|
||||
debugfs_remove(dpcm->debugfs_state);
|
||||
#endif
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
list_del(&dpcm->list_be);
|
||||
list_del(&dpcm->list_fe);
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
kfree(dpcm);
|
||||
}
|
||||
}
|
||||
|
@ -1547,10 +1566,13 @@ int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
|
|||
void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
|
||||
{
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
for_each_dpcm_be(fe, stream, dpcm)
|
||||
dpcm->be->dpcm[stream].runtime_update =
|
||||
SND_SOC_DPCM_UPDATE_NO;
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
}
|
||||
|
||||
static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
|
||||
|
@ -1899,10 +1921,15 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
|
|||
struct snd_soc_pcm_runtime *be = dpcm->be;
|
||||
struct snd_pcm_substream *be_substream =
|
||||
snd_soc_dpcm_get_substream(be, stream);
|
||||
struct snd_soc_pcm_runtime *rtd = be_substream->private_data;
|
||||
struct snd_soc_pcm_runtime *rtd;
|
||||
struct snd_soc_dai *codec_dai;
|
||||
int i;
|
||||
|
||||
/* A backend may not have the requested substream */
|
||||
if (!be_substream)
|
||||
continue;
|
||||
|
||||
rtd = be_substream->private_data;
|
||||
if (rtd->dai_link->be_hw_params_fixup)
|
||||
continue;
|
||||
|
||||
|
@ -2571,6 +2598,7 @@ static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
|
|||
struct snd_soc_dpcm *dpcm;
|
||||
enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
|
||||
int ret;
|
||||
unsigned long flags;
|
||||
|
||||
dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
|
||||
stream ? "capture" : "playback", fe->dai_link->name);
|
||||
|
@ -2640,11 +2668,13 @@ static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
|
|||
dpcm_be_dai_shutdown(fe, stream);
|
||||
disconnect:
|
||||
/* disconnect any non started BEs */
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
for_each_dpcm_be(fe, stream, dpcm) {
|
||||
struct snd_soc_pcm_runtime *be = dpcm->be;
|
||||
if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
|
||||
dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
|
||||
}
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -3221,7 +3251,10 @@ int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
|
|||
{
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
int state;
|
||||
int ret = 1;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
for_each_dpcm_fe(be, stream, dpcm) {
|
||||
|
||||
if (dpcm->fe == fe)
|
||||
|
@ -3230,12 +3263,15 @@ int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
|
|||
state = dpcm->fe->dpcm[stream].state;
|
||||
if (state == SND_SOC_DPCM_STATE_START ||
|
||||
state == SND_SOC_DPCM_STATE_PAUSED ||
|
||||
state == SND_SOC_DPCM_STATE_SUSPEND)
|
||||
return 0;
|
||||
state == SND_SOC_DPCM_STATE_SUSPEND) {
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
|
||||
/* it's safe to free/stop this BE DAI */
|
||||
return 1;
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
|
||||
|
||||
|
@ -3248,7 +3284,10 @@ int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
|
|||
{
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
int state;
|
||||
int ret = 1;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
for_each_dpcm_fe(be, stream, dpcm) {
|
||||
|
||||
if (dpcm->fe == fe)
|
||||
|
@ -3258,12 +3297,15 @@ int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
|
|||
if (state == SND_SOC_DPCM_STATE_START ||
|
||||
state == SND_SOC_DPCM_STATE_PAUSED ||
|
||||
state == SND_SOC_DPCM_STATE_SUSPEND ||
|
||||
state == SND_SOC_DPCM_STATE_PREPARE)
|
||||
return 0;
|
||||
state == SND_SOC_DPCM_STATE_PREPARE) {
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
|
||||
/* it's safe to change hw_params */
|
||||
return 1;
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
|
||||
|
||||
|
@ -3302,6 +3344,7 @@ static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
|
|||
struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
ssize_t offset = 0;
|
||||
unsigned long flags;
|
||||
|
||||
/* FE state */
|
||||
offset += snprintf(buf + offset, size - offset,
|
||||
|
@ -3329,6 +3372,7 @@ static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
|
|||
goto out;
|
||||
}
|
||||
|
||||
spin_lock_irqsave(&fe->card->dpcm_lock, flags);
|
||||
for_each_dpcm_be(fe, stream, dpcm) {
|
||||
struct snd_soc_pcm_runtime *be = dpcm->be;
|
||||
params = &dpcm->hw_params;
|
||||
|
@ -3349,7 +3393,7 @@ static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
|
|||
params_channels(params),
|
||||
params_rate(params));
|
||||
}
|
||||
|
||||
spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
|
||||
out:
|
||||
return offset;
|
||||
}
|
||||
|
|
|
@ -482,10 +482,11 @@ static void remove_widget(struct snd_soc_component *comp,
|
|||
|
||||
snd_ctl_remove(card, kcontrol);
|
||||
|
||||
kfree(dobj->control.dvalues);
|
||||
/* free enum kcontrol's dvalues and dtexts */
|
||||
kfree(se->dobj.control.dvalues);
|
||||
for (j = 0; j < se->items; j++)
|
||||
kfree(dobj->control.dtexts[j]);
|
||||
kfree(dobj->control.dtexts);
|
||||
kfree(se->dobj.control.dtexts[j]);
|
||||
kfree(se->dobj.control.dtexts);
|
||||
|
||||
kfree(se);
|
||||
kfree(w->kcontrol_news[i].name);
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
|
@ -37,6 +38,8 @@ struct stm32_adfsdm_priv {
|
|||
/* PCM buffer */
|
||||
unsigned char *pcm_buff;
|
||||
unsigned int pos;
|
||||
|
||||
struct mutex lock; /* protect against race condition on iio state */
|
||||
};
|
||||
|
||||
static const struct snd_pcm_hardware stm32_adfsdm_pcm_hw = {
|
||||
|
@ -62,10 +65,12 @@ static void stm32_adfsdm_shutdown(struct snd_pcm_substream *substream,
|
|||
{
|
||||
struct stm32_adfsdm_priv *priv = snd_soc_dai_get_drvdata(dai);
|
||||
|
||||
mutex_lock(&priv->lock);
|
||||
if (priv->iio_active) {
|
||||
iio_channel_stop_all_cb(priv->iio_cb);
|
||||
priv->iio_active = false;
|
||||
}
|
||||
mutex_unlock(&priv->lock);
|
||||
}
|
||||
|
||||
static int stm32_adfsdm_dai_prepare(struct snd_pcm_substream *substream,
|
||||
|
@ -74,13 +79,19 @@ static int stm32_adfsdm_dai_prepare(struct snd_pcm_substream *substream,
|
|||
struct stm32_adfsdm_priv *priv = snd_soc_dai_get_drvdata(dai);
|
||||
int ret;
|
||||
|
||||
mutex_lock(&priv->lock);
|
||||
if (priv->iio_active) {
|
||||
iio_channel_stop_all_cb(priv->iio_cb);
|
||||
priv->iio_active = false;
|
||||
}
|
||||
|
||||
ret = iio_write_channel_attribute(priv->iio_ch,
|
||||
substream->runtime->rate, 0,
|
||||
IIO_CHAN_INFO_SAMP_FREQ);
|
||||
if (ret < 0) {
|
||||
dev_err(dai->dev, "%s: Failed to set %d sampling rate\n",
|
||||
__func__, substream->runtime->rate);
|
||||
return ret;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!priv->iio_active) {
|
||||
|
@ -92,6 +103,9 @@ static int stm32_adfsdm_dai_prepare(struct snd_pcm_substream *substream,
|
|||
__func__, ret);
|
||||
}
|
||||
|
||||
out:
|
||||
mutex_unlock(&priv->lock);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -291,6 +305,7 @@ MODULE_DEVICE_TABLE(of, stm32_adfsdm_of_match);
|
|||
static int stm32_adfsdm_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct stm32_adfsdm_priv *priv;
|
||||
struct snd_soc_component *component;
|
||||
int ret;
|
||||
|
||||
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
|
||||
|
@ -299,6 +314,7 @@ static int stm32_adfsdm_probe(struct platform_device *pdev)
|
|||
|
||||
priv->dev = &pdev->dev;
|
||||
priv->dai_drv = stm32_adfsdm_dai;
|
||||
mutex_init(&priv->lock);
|
||||
|
||||
dev_set_drvdata(&pdev->dev, priv);
|
||||
|
||||
|
@ -317,9 +333,15 @@ static int stm32_adfsdm_probe(struct platform_device *pdev)
|
|||
if (IS_ERR(priv->iio_cb))
|
||||
return PTR_ERR(priv->iio_cb);
|
||||
|
||||
ret = devm_snd_soc_register_component(&pdev->dev,
|
||||
&stm32_adfsdm_soc_platform,
|
||||
NULL, 0);
|
||||
component = devm_kzalloc(&pdev->dev, sizeof(*component), GFP_KERNEL);
|
||||
if (!component)
|
||||
return -ENOMEM;
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
component->debugfs_prefix = "pcm";
|
||||
#endif
|
||||
|
||||
ret = snd_soc_add_component(&pdev->dev, component,
|
||||
&stm32_adfsdm_soc_platform, NULL, 0);
|
||||
if (ret < 0)
|
||||
dev_err(&pdev->dev, "%s: Failed to register PCM platform\n",
|
||||
__func__);
|
||||
|
@ -327,12 +349,20 @@ static int stm32_adfsdm_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int stm32_adfsdm_remove(struct platform_device *pdev)
|
||||
{
|
||||
snd_soc_unregister_component(&pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver stm32_adfsdm_driver = {
|
||||
.driver = {
|
||||
.name = STM32_ADFSDM_DRV_NAME,
|
||||
.of_match_table = stm32_adfsdm_of_match,
|
||||
},
|
||||
.probe = stm32_adfsdm_probe,
|
||||
.remove = stm32_adfsdm_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(stm32_adfsdm_driver);
|
||||
|
|
|
@ -281,7 +281,6 @@ static bool stm32_i2s_readable_reg(struct device *dev, unsigned int reg)
|
|||
case STM32_I2S_CFG2_REG:
|
||||
case STM32_I2S_IER_REG:
|
||||
case STM32_I2S_SR_REG:
|
||||
case STM32_I2S_TXDR_REG:
|
||||
case STM32_I2S_RXDR_REG:
|
||||
case STM32_I2S_CGFR_REG:
|
||||
return true;
|
||||
|
@ -293,7 +292,7 @@ static bool stm32_i2s_readable_reg(struct device *dev, unsigned int reg)
|
|||
static bool stm32_i2s_volatile_reg(struct device *dev, unsigned int reg)
|
||||
{
|
||||
switch (reg) {
|
||||
case STM32_I2S_TXDR_REG:
|
||||
case STM32_I2S_SR_REG:
|
||||
case STM32_I2S_RXDR_REG:
|
||||
return true;
|
||||
default:
|
||||
|
|
|
@ -105,6 +105,7 @@ static int stm32_sai_set_sync(struct stm32_sai_data *sai_client,
|
|||
if (!pdev) {
|
||||
dev_err(&sai_client->pdev->dev,
|
||||
"Device not found for node %pOFn\n", np_provider);
|
||||
of_node_put(np_provider);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
@ -113,19 +114,20 @@ static int stm32_sai_set_sync(struct stm32_sai_data *sai_client,
|
|||
dev_err(&sai_client->pdev->dev,
|
||||
"SAI sync provider data not found\n");
|
||||
ret = -EINVAL;
|
||||
goto out_put_dev;
|
||||
goto error;
|
||||
}
|
||||
|
||||
/* Configure sync client */
|
||||
ret = stm32_sai_sync_conf_client(sai_client, synci);
|
||||
if (ret < 0)
|
||||
goto out_put_dev;
|
||||
goto error;
|
||||
|
||||
/* Configure sync provider */
|
||||
ret = stm32_sai_sync_conf_provider(sai_provider, synco);
|
||||
|
||||
out_put_dev:
|
||||
error:
|
||||
put_device(&pdev->dev);
|
||||
of_node_put(np_provider);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
@ -70,6 +70,7 @@
|
|||
#define SAI_IEC60958_STATUS_BYTES 24
|
||||
|
||||
#define SAI_MCLK_NAME_LEN 32
|
||||
#define SAI_RATE_11K 11025
|
||||
|
||||
/**
|
||||
* struct stm32_sai_sub_data - private data of SAI sub block (block A or B)
|
||||
|
@ -100,8 +101,9 @@
|
|||
* @slot_mask: rx or tx active slots mask. set at init or at runtime
|
||||
* @data_size: PCM data width. corresponds to PCM substream width.
|
||||
* @spdif_frm_cnt: S/PDIF playback frame counter
|
||||
* @snd_aes_iec958: iec958 data
|
||||
* @iec958: iec958 data
|
||||
* @ctrl_lock: control lock
|
||||
* @irq_lock: prevent race condition with IRQ
|
||||
*/
|
||||
struct stm32_sai_sub_data {
|
||||
struct platform_device *pdev;
|
||||
|
@ -133,6 +135,7 @@ struct stm32_sai_sub_data {
|
|||
unsigned int spdif_frm_cnt;
|
||||
struct snd_aes_iec958 iec958;
|
||||
struct mutex ctrl_lock; /* protect resources accessed by controls */
|
||||
spinlock_t irq_lock; /* used to prevent race condition with IRQ */
|
||||
};
|
||||
|
||||
enum stm32_sai_fifo_th {
|
||||
|
@ -307,6 +310,25 @@ static int stm32_sai_set_clk_div(struct stm32_sai_sub_data *sai,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int stm32_sai_set_parent_clock(struct stm32_sai_sub_data *sai,
|
||||
unsigned int rate)
|
||||
{
|
||||
struct platform_device *pdev = sai->pdev;
|
||||
struct clk *parent_clk = sai->pdata->clk_x8k;
|
||||
int ret;
|
||||
|
||||
if (!(rate % SAI_RATE_11K))
|
||||
parent_clk = sai->pdata->clk_x11k;
|
||||
|
||||
ret = clk_set_parent(sai->sai_ck, parent_clk);
|
||||
if (ret)
|
||||
dev_err(&pdev->dev, " Error %d setting sai_ck parent clock. %s",
|
||||
ret, ret == -EBUSY ?
|
||||
"Active stream rates conflict\n" : "\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static long stm32_sai_mclk_round_rate(struct clk_hw *hw, unsigned long rate,
|
||||
unsigned long *prate)
|
||||
{
|
||||
|
@ -474,8 +496,10 @@ static irqreturn_t stm32_sai_isr(int irq, void *devid)
|
|||
status = SNDRV_PCM_STATE_XRUN;
|
||||
}
|
||||
|
||||
if (status != SNDRV_PCM_STATE_RUNNING)
|
||||
spin_lock(&sai->irq_lock);
|
||||
if (status != SNDRV_PCM_STATE_RUNNING && sai->substream)
|
||||
snd_pcm_stop_xrun(sai->substream);
|
||||
spin_unlock(&sai->irq_lock);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
@ -486,25 +510,29 @@ static int stm32_sai_set_sysclk(struct snd_soc_dai *cpu_dai,
|
|||
struct stm32_sai_sub_data *sai = snd_soc_dai_get_drvdata(cpu_dai);
|
||||
int ret;
|
||||
|
||||
if (dir == SND_SOC_CLOCK_OUT) {
|
||||
if (dir == SND_SOC_CLOCK_OUT && sai->sai_mclk) {
|
||||
ret = regmap_update_bits(sai->regmap, STM_SAI_CR1_REGX,
|
||||
SAI_XCR1_NODIV,
|
||||
(unsigned int)~SAI_XCR1_NODIV);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* If master clock is used, set parent clock now */
|
||||
ret = stm32_sai_set_parent_clock(sai, freq);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = clk_set_rate_exclusive(sai->sai_mclk, freq);
|
||||
if (ret) {
|
||||
dev_err(cpu_dai->dev,
|
||||
ret == -EBUSY ?
|
||||
"Active streams have incompatible rates" :
|
||||
"Could not set mclk rate\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
dev_dbg(cpu_dai->dev, "SAI MCLK frequency is %uHz\n", freq);
|
||||
sai->mclk_rate = freq;
|
||||
|
||||
if (sai->sai_mclk) {
|
||||
ret = clk_set_rate_exclusive(sai->sai_mclk,
|
||||
sai->mclk_rate);
|
||||
if (ret) {
|
||||
dev_err(cpu_dai->dev,
|
||||
"Could not set mclk rate\n");
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -679,8 +707,19 @@ static int stm32_sai_startup(struct snd_pcm_substream *substream,
|
|||
{
|
||||
struct stm32_sai_sub_data *sai = snd_soc_dai_get_drvdata(cpu_dai);
|
||||
int imr, cr2, ret;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&sai->irq_lock, flags);
|
||||
sai->substream = substream;
|
||||
spin_unlock_irqrestore(&sai->irq_lock, flags);
|
||||
|
||||
if (STM_SAI_PROTOCOL_IS_SPDIF(sai)) {
|
||||
snd_pcm_hw_constraint_mask64(substream->runtime,
|
||||
SNDRV_PCM_HW_PARAM_FORMAT,
|
||||
SNDRV_PCM_FMTBIT_S32_LE);
|
||||
snd_pcm_hw_constraint_single(substream->runtime,
|
||||
SNDRV_PCM_HW_PARAM_CHANNELS, 2);
|
||||
}
|
||||
|
||||
ret = clk_prepare_enable(sai->sai_ck);
|
||||
if (ret < 0) {
|
||||
|
@ -898,14 +937,16 @@ static int stm32_sai_configure_clock(struct snd_soc_dai *cpu_dai,
|
|||
struct snd_pcm_hw_params *params)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = snd_soc_dai_get_drvdata(cpu_dai);
|
||||
int div = 0;
|
||||
int div = 0, cr1 = 0;
|
||||
int sai_clk_rate, mclk_ratio, den;
|
||||
unsigned int rate = params_rate(params);
|
||||
int ret;
|
||||
|
||||
if (!(rate % 11025))
|
||||
clk_set_parent(sai->sai_ck, sai->pdata->clk_x11k);
|
||||
else
|
||||
clk_set_parent(sai->sai_ck, sai->pdata->clk_x8k);
|
||||
if (!sai->sai_mclk) {
|
||||
ret = stm32_sai_set_parent_clock(sai, rate);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
sai_clk_rate = clk_get_rate(sai->sai_ck);
|
||||
|
||||
if (STM_SAI_IS_F4(sai->pdata)) {
|
||||
|
@ -943,13 +984,19 @@ static int stm32_sai_configure_clock(struct snd_soc_dai *cpu_dai,
|
|||
} else {
|
||||
if (sai->mclk_rate) {
|
||||
mclk_ratio = sai->mclk_rate / rate;
|
||||
if ((mclk_ratio != 512) &&
|
||||
(mclk_ratio != 256)) {
|
||||
if (mclk_ratio == 512) {
|
||||
cr1 = SAI_XCR1_OSR;
|
||||
} else if (mclk_ratio != 256) {
|
||||
dev_err(cpu_dai->dev,
|
||||
"Wrong mclk ratio %d\n",
|
||||
mclk_ratio);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
regmap_update_bits(sai->regmap,
|
||||
STM_SAI_CR1_REGX,
|
||||
SAI_XCR1_OSR, cr1);
|
||||
|
||||
div = stm32_sai_get_clk_div(sai, sai_clk_rate,
|
||||
sai->mclk_rate);
|
||||
if (div < 0)
|
||||
|
@ -1051,28 +1098,36 @@ static void stm32_sai_shutdown(struct snd_pcm_substream *substream,
|
|||
struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = snd_soc_dai_get_drvdata(cpu_dai);
|
||||
unsigned long flags;
|
||||
|
||||
regmap_update_bits(sai->regmap, STM_SAI_IMR_REGX, SAI_XIMR_MASK, 0);
|
||||
|
||||
regmap_update_bits(sai->regmap, STM_SAI_CR1_REGX, SAI_XCR1_NODIV,
|
||||
SAI_XCR1_NODIV);
|
||||
|
||||
/* Release mclk rate only if rate was actually set */
|
||||
if (sai->mclk_rate) {
|
||||
clk_rate_exclusive_put(sai->sai_mclk);
|
||||
sai->mclk_rate = 0;
|
||||
}
|
||||
|
||||
clk_disable_unprepare(sai->sai_ck);
|
||||
|
||||
clk_rate_exclusive_put(sai->sai_mclk);
|
||||
|
||||
spin_lock_irqsave(&sai->irq_lock, flags);
|
||||
sai->substream = NULL;
|
||||
spin_unlock_irqrestore(&sai->irq_lock, flags);
|
||||
}
|
||||
|
||||
static int stm32_sai_pcm_new(struct snd_soc_pcm_runtime *rtd,
|
||||
struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = dev_get_drvdata(cpu_dai->dev);
|
||||
struct snd_kcontrol_new knew = iec958_ctls;
|
||||
|
||||
if (STM_SAI_PROTOCOL_IS_SPDIF(sai)) {
|
||||
dev_dbg(&sai->pdev->dev, "%s: register iec controls", __func__);
|
||||
return snd_ctl_add(rtd->pcm->card,
|
||||
snd_ctl_new1(&iec958_ctls, sai));
|
||||
knew.device = rtd->pcm->device;
|
||||
return snd_ctl_add(rtd->pcm->card, snd_ctl_new1(&knew, sai));
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -1081,7 +1136,7 @@ static int stm32_sai_pcm_new(struct snd_soc_pcm_runtime *rtd,
|
|||
static int stm32_sai_dai_probe(struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = dev_get_drvdata(cpu_dai->dev);
|
||||
int cr1 = 0, cr1_mask;
|
||||
int cr1 = 0, cr1_mask, ret;
|
||||
|
||||
sai->cpu_dai = cpu_dai;
|
||||
|
||||
|
@ -1111,8 +1166,10 @@ static int stm32_sai_dai_probe(struct snd_soc_dai *cpu_dai)
|
|||
/* Configure synchronization */
|
||||
if (sai->sync == SAI_SYNC_EXTERNAL) {
|
||||
/* Configure synchro client and provider */
|
||||
sai->pdata->set_sync(sai->pdata, sai->np_sync_provider,
|
||||
sai->synco, sai->synci);
|
||||
ret = sai->pdata->set_sync(sai->pdata, sai->np_sync_provider,
|
||||
sai->synco, sai->synci);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
cr1_mask |= SAI_XCR1_SYNCEN_MASK;
|
||||
|
@ -1392,7 +1449,6 @@ static int stm32_sai_sub_dais_init(struct platform_device *pdev,
|
|||
if (!sai->cpu_dai_drv)
|
||||
return -ENOMEM;
|
||||
|
||||
sai->cpu_dai_drv->name = dev_name(&pdev->dev);
|
||||
if (STM_SAI_IS_PLAYBACK(sai)) {
|
||||
memcpy(sai->cpu_dai_drv, &stm32_sai_playback_dai,
|
||||
sizeof(stm32_sai_playback_dai));
|
||||
|
@ -1402,6 +1458,7 @@ static int stm32_sai_sub_dais_init(struct platform_device *pdev,
|
|||
sizeof(stm32_sai_capture_dai));
|
||||
sai->cpu_dai_drv->capture.stream_name = sai->cpu_dai_drv->name;
|
||||
}
|
||||
sai->cpu_dai_drv->name = dev_name(&pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1424,6 +1481,7 @@ static int stm32_sai_sub_probe(struct platform_device *pdev)
|
|||
|
||||
sai->pdev = pdev;
|
||||
mutex_init(&sai->ctrl_lock);
|
||||
spin_lock_init(&sai->irq_lock);
|
||||
platform_set_drvdata(pdev, sai);
|
||||
|
||||
sai->pdata = dev_get_drvdata(pdev->dev.parent);
|
||||
|
|
|
@ -441,7 +441,7 @@ static int shbuf_setup_backstore(struct xen_snd_front_pcm_stream_info *stream,
|
|||
{
|
||||
int i;
|
||||
|
||||
stream->buffer = alloc_pages_exact(stream->buffer_sz, GFP_KERNEL);
|
||||
stream->buffer = alloc_pages_exact(buffer_sz, GFP_KERNEL);
|
||||
if (!stream->buffer)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
Loading…
Reference in New Issue