Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1 | /* |
| 2 | * intel_hdmi_audio.c - Intel HDMI audio driver |
| 3 | * |
| 4 | * Copyright (C) 2016 Intel Corp |
| 5 | * Authors: Sailaja Bandarupalli <sailaja.bandarupalli@intel.com> |
| 6 | * Ramesh Babu K V <ramesh.babu@intel.com> |
| 7 | * Vaibhav Agarwal <vaibhav.agarwal@intel.com> |
| 8 | * Jerome Anand <jerome.anand@intel.com> |
| 9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; version 2 of the License. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 21 | * ALSA driver for Intel HDMI audio |
| 22 | */ |
| 23 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/io.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/module.h> |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 28 | #include <linux/interrupt.h> |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 29 | #include <linux/acpi.h> |
| 30 | #include <asm/cacheflush.h> |
| 31 | #include <sound/pcm.h> |
| 32 | #include <sound/core.h> |
| 33 | #include <sound/pcm_params.h> |
| 34 | #include <sound/initval.h> |
| 35 | #include <sound/control.h> |
| 36 | #include <sound/initval.h> |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 37 | #include <drm/intel_lpe_audio.h> |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 38 | #include "intel_hdmi_audio.h" |
| 39 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 40 | /*standard module options for ALSA. This module supports only one card*/ |
| 41 | static int hdmi_card_index = SNDRV_DEFAULT_IDX1; |
| 42 | static char *hdmi_card_id = SNDRV_DEFAULT_STR1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 43 | |
| 44 | module_param_named(index, hdmi_card_index, int, 0444); |
| 45 | MODULE_PARM_DESC(index, |
| 46 | "Index value for INTEL Intel HDMI Audio controller."); |
| 47 | module_param_named(id, hdmi_card_id, charp, 0444); |
| 48 | MODULE_PARM_DESC(id, |
| 49 | "ID string for INTEL Intel HDMI Audio controller."); |
| 50 | |
| 51 | /* |
| 52 | * ELD SA bits in the CEA Speaker Allocation data block |
| 53 | */ |
Takashi Iwai | 4a5ddb2 | 2017-02-01 16:45:38 +0100 | [diff] [blame] | 54 | static const int eld_speaker_allocation_bits[] = { |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 55 | [0] = FL | FR, |
| 56 | [1] = LFE, |
| 57 | [2] = FC, |
| 58 | [3] = RL | RR, |
| 59 | [4] = RC, |
| 60 | [5] = FLC | FRC, |
| 61 | [6] = RLC | RRC, |
| 62 | /* the following are not defined in ELD yet */ |
| 63 | [7] = 0, |
| 64 | }; |
| 65 | |
| 66 | /* |
| 67 | * This is an ordered list! |
| 68 | * |
| 69 | * The preceding ones have better chances to be selected by |
| 70 | * hdmi_channel_allocation(). |
| 71 | */ |
| 72 | static struct cea_channel_speaker_allocation channel_allocations[] = { |
| 73 | /* channel: 7 6 5 4 3 2 1 0 */ |
| 74 | { .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } }, |
| 75 | /* 2.1 */ |
| 76 | { .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } }, |
| 77 | /* Dolby Surround */ |
| 78 | { .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } }, |
| 79 | /* surround40 */ |
| 80 | { .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } }, |
| 81 | /* surround41 */ |
| 82 | { .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } }, |
| 83 | /* surround50 */ |
| 84 | { .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } }, |
| 85 | /* surround51 */ |
| 86 | { .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } }, |
| 87 | /* 6.1 */ |
| 88 | { .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } }, |
| 89 | /* surround71 */ |
| 90 | { .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } }, |
| 91 | |
| 92 | { .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } }, |
| 93 | { .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } }, |
| 94 | { .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } }, |
| 95 | { .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } }, |
| 96 | { .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } }, |
| 97 | { .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } }, |
| 98 | { .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } }, |
| 99 | { .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } }, |
| 100 | { .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } }, |
| 101 | { .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } }, |
| 102 | { .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } }, |
| 103 | { .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } }, |
| 104 | { .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } }, |
| 105 | { .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } }, |
| 106 | { .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } }, |
| 107 | { .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } }, |
| 108 | { .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } }, |
| 109 | { .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } }, |
| 110 | { .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } }, |
| 111 | { .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } }, |
| 112 | { .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } }, |
| 113 | { .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } }, |
| 114 | { .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } }, |
| 115 | }; |
| 116 | |
Takashi Iwai | 4a5ddb2 | 2017-02-01 16:45:38 +0100 | [diff] [blame] | 117 | static const struct channel_map_table map_tables[] = { |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 118 | { SNDRV_CHMAP_FL, 0x00, FL }, |
| 119 | { SNDRV_CHMAP_FR, 0x01, FR }, |
| 120 | { SNDRV_CHMAP_RL, 0x04, RL }, |
| 121 | { SNDRV_CHMAP_RR, 0x05, RR }, |
| 122 | { SNDRV_CHMAP_LFE, 0x02, LFE }, |
| 123 | { SNDRV_CHMAP_FC, 0x03, FC }, |
| 124 | { SNDRV_CHMAP_RLC, 0x06, RLC }, |
| 125 | { SNDRV_CHMAP_RRC, 0x07, RRC }, |
| 126 | {} /* terminator */ |
| 127 | }; |
| 128 | |
| 129 | /* hardware capability structure */ |
| 130 | static const struct snd_pcm_hardware snd_intel_hadstream = { |
| 131 | .info = (SNDRV_PCM_INFO_INTERLEAVED | |
| 132 | SNDRV_PCM_INFO_DOUBLE | |
| 133 | SNDRV_PCM_INFO_MMAP| |
| 134 | SNDRV_PCM_INFO_MMAP_VALID | |
| 135 | SNDRV_PCM_INFO_BATCH), |
| 136 | .formats = (SNDRV_PCM_FMTBIT_S24 | |
| 137 | SNDRV_PCM_FMTBIT_U24), |
| 138 | .rates = SNDRV_PCM_RATE_32000 | |
| 139 | SNDRV_PCM_RATE_44100 | |
| 140 | SNDRV_PCM_RATE_48000 | |
| 141 | SNDRV_PCM_RATE_88200 | |
| 142 | SNDRV_PCM_RATE_96000 | |
| 143 | SNDRV_PCM_RATE_176400 | |
| 144 | SNDRV_PCM_RATE_192000, |
| 145 | .rate_min = HAD_MIN_RATE, |
| 146 | .rate_max = HAD_MAX_RATE, |
| 147 | .channels_min = HAD_MIN_CHANNEL, |
| 148 | .channels_max = HAD_MAX_CHANNEL, |
| 149 | .buffer_bytes_max = HAD_MAX_BUFFER, |
| 150 | .period_bytes_min = HAD_MIN_PERIOD_BYTES, |
| 151 | .period_bytes_max = HAD_MAX_PERIOD_BYTES, |
| 152 | .periods_min = HAD_MIN_PERIODS, |
| 153 | .periods_max = HAD_MAX_PERIODS, |
| 154 | .fifo_size = HAD_FIFO_SIZE, |
| 155 | }; |
| 156 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 157 | /* Get the active PCM substream; |
| 158 | * Call had_substream_put() for unreferecing. |
| 159 | * Don't call this inside had_spinlock, as it takes by itself |
| 160 | */ |
| 161 | static struct snd_pcm_substream * |
| 162 | had_substream_get(struct snd_intelhad *intelhaddata) |
| 163 | { |
| 164 | struct snd_pcm_substream *substream; |
| 165 | unsigned long flags; |
| 166 | |
| 167 | spin_lock_irqsave(&intelhaddata->had_spinlock, flags); |
| 168 | substream = intelhaddata->stream_info.substream; |
| 169 | if (substream) |
| 170 | intelhaddata->stream_info.substream_refcount++; |
| 171 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags); |
| 172 | return substream; |
| 173 | } |
| 174 | |
| 175 | /* Unref the active PCM substream; |
| 176 | * Don't call this inside had_spinlock, as it takes by itself |
| 177 | */ |
| 178 | static void had_substream_put(struct snd_intelhad *intelhaddata) |
| 179 | { |
| 180 | unsigned long flags; |
| 181 | |
| 182 | spin_lock_irqsave(&intelhaddata->had_spinlock, flags); |
| 183 | intelhaddata->stream_info.substream_refcount--; |
| 184 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags); |
| 185 | } |
| 186 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 187 | /* Register access functions */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 188 | static inline void |
| 189 | mid_hdmi_audio_read(struct snd_intelhad *ctx, u32 reg, u32 *val) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 190 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 191 | *val = ioread32(ctx->mmio_start + ctx->had_config_offset + reg); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 192 | } |
| 193 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 194 | static inline void |
| 195 | mid_hdmi_audio_write(struct snd_intelhad *ctx, u32 reg, u32 val) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 196 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 197 | iowrite32(val, ctx->mmio_start + ctx->had_config_offset + reg); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 198 | } |
| 199 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 200 | static int had_read_register(struct snd_intelhad *intelhaddata, |
| 201 | u32 offset, u32 *data) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 202 | { |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 203 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 204 | return -ENODEV; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 205 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 206 | mid_hdmi_audio_read(intelhaddata, offset, data); |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | static void fixup_dp_config(struct snd_intelhad *intelhaddata, |
| 211 | u32 offset, u32 *data) |
| 212 | { |
| 213 | if (intelhaddata->dp_output) { |
| 214 | if (offset == AUD_CONFIG && (*data & AUD_CONFIG_VALID_BIT)) |
| 215 | *data |= AUD_CONFIG_DP_MODE | AUD_CONFIG_BLOCK_BIT; |
| 216 | } |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 217 | } |
| 218 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 219 | static int had_write_register(struct snd_intelhad *intelhaddata, |
| 220 | u32 offset, u32 data) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 221 | { |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 222 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 223 | return -ENODEV; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 224 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 225 | fixup_dp_config(intelhaddata, offset, &data); |
| 226 | mid_hdmi_audio_write(intelhaddata, offset, data); |
| 227 | return 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 228 | } |
| 229 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 230 | static int had_read_modify(struct snd_intelhad *intelhaddata, u32 offset, |
| 231 | u32 data, u32 mask) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 232 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 233 | u32 val_tmp; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 234 | |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 235 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 236 | return -ENODEV; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 237 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 238 | mid_hdmi_audio_read(intelhaddata, offset, &val_tmp); |
| 239 | val_tmp &= ~mask; |
| 240 | val_tmp |= (data & mask); |
| 241 | |
| 242 | fixup_dp_config(intelhaddata, offset, &val_tmp); |
| 243 | mid_hdmi_audio_write(intelhaddata, offset, val_tmp); |
| 244 | return 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 245 | } |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 246 | |
| 247 | /* |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 248 | * enable / disable audio configuration |
| 249 | * |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 250 | * The had_read_modify() function should not directly be used on VLV2 for |
| 251 | * updating AUD_CONFIG register. |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 252 | * This is because: |
| 253 | * Bit6 of AUD_CONFIG register is writeonly due to a silicon bug on VLV2 |
| 254 | * HDMI IP. As a result a read-modify of AUD_CONFIG regiter will always |
| 255 | * clear bit6. AUD_CONFIG[6:4] represents the "channels" field of the |
| 256 | * register. This field should be 1xy binary for configuration with 6 or |
| 257 | * more channels. Read-modify of AUD_CONFIG (Eg. for enabling audio) |
| 258 | * causes the "channels" field to be updated as 0xy binary resulting in |
| 259 | * bad audio. The fix is to always write the AUD_CONFIG[6:4] with |
| 260 | * appropriate value when doing read-modify of AUD_CONFIG register. |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 261 | */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 262 | static void snd_intelhad_enable_audio(struct snd_pcm_substream *substream, |
| 263 | struct snd_intelhad *intelhaddata, |
| 264 | bool enable) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 265 | { |
| 266 | union aud_cfg cfg_val = {.cfg_regval = 0}; |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 267 | u8 channels, data, mask; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 268 | |
| 269 | /* |
| 270 | * If substream is NULL, there is no active stream. |
| 271 | * In this case just set channels to 2 |
| 272 | */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 273 | channels = substream ? substream->runtime->channels : 2; |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 274 | cfg_val.cfg_regx.num_ch = channels - 2; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 275 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 276 | data = cfg_val.cfg_regval; |
| 277 | if (enable) |
| 278 | data |= 1; |
| 279 | mask = AUD_CONFIG_CH_MASK | 1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 280 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 281 | dev_dbg(intelhaddata->dev, "%s : data = %x, mask =%x\n", |
| 282 | __func__, data, mask); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 283 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 284 | had_read_modify(intelhaddata, AUD_CONFIG, data, mask); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 285 | } |
| 286 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 287 | /* enable / disable the audio interface */ |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 288 | static void snd_intelhad_enable_audio_int(struct snd_intelhad *ctx, bool enable) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 289 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 290 | u32 status_reg; |
| 291 | |
| 292 | if (enable) { |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 293 | mid_hdmi_audio_read(ctx, AUD_HDMI_STATUS, &status_reg); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 294 | status_reg |= HDMI_AUDIO_BUFFER_DONE | HDMI_AUDIO_UNDERRUN; |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 295 | mid_hdmi_audio_write(ctx, AUD_HDMI_STATUS, status_reg); |
| 296 | mid_hdmi_audio_read(ctx, AUD_HDMI_STATUS, &status_reg); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 300 | static void snd_intelhad_reset_audio(struct snd_intelhad *intelhaddata, |
| 301 | u8 reset) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 302 | { |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 303 | had_write_register(intelhaddata, AUD_HDMI_STATUS, reset); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 304 | } |
| 305 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 306 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 307 | * initialize audio channel status registers |
| 308 | * This function is called in the prepare callback |
| 309 | */ |
| 310 | static int had_prog_status_reg(struct snd_pcm_substream *substream, |
| 311 | struct snd_intelhad *intelhaddata) |
| 312 | { |
| 313 | union aud_cfg cfg_val = {.cfg_regval = 0}; |
| 314 | union aud_ch_status_0 ch_stat0 = {.status_0_regval = 0}; |
| 315 | union aud_ch_status_1 ch_stat1 = {.status_1_regval = 0}; |
| 316 | int format; |
| 317 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 318 | ch_stat0.status_0_regx.lpcm_id = (intelhaddata->aes_bits & |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 319 | IEC958_AES0_NONAUDIO) >> 1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 320 | ch_stat0.status_0_regx.clk_acc = (intelhaddata->aes_bits & |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 321 | IEC958_AES3_CON_CLOCK) >> 4; |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 322 | cfg_val.cfg_regx.val_bit = ch_stat0.status_0_regx.lpcm_id; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 323 | |
| 324 | switch (substream->runtime->rate) { |
| 325 | case AUD_SAMPLE_RATE_32: |
| 326 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_32KHZ; |
| 327 | break; |
| 328 | |
| 329 | case AUD_SAMPLE_RATE_44_1: |
| 330 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_44KHZ; |
| 331 | break; |
| 332 | case AUD_SAMPLE_RATE_48: |
| 333 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_48KHZ; |
| 334 | break; |
| 335 | case AUD_SAMPLE_RATE_88_2: |
| 336 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_88KHZ; |
| 337 | break; |
| 338 | case AUD_SAMPLE_RATE_96: |
| 339 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_96KHZ; |
| 340 | break; |
| 341 | case AUD_SAMPLE_RATE_176_4: |
| 342 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_176KHZ; |
| 343 | break; |
| 344 | case AUD_SAMPLE_RATE_192: |
| 345 | ch_stat0.status_0_regx.samp_freq = CH_STATUS_MAP_192KHZ; |
| 346 | break; |
| 347 | |
| 348 | default: |
| 349 | /* control should never come here */ |
| 350 | return -EINVAL; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 351 | } |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 352 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 353 | had_write_register(intelhaddata, |
| 354 | AUD_CH_STATUS_0, ch_stat0.status_0_regval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 355 | |
| 356 | format = substream->runtime->format; |
| 357 | |
| 358 | if (format == SNDRV_PCM_FORMAT_S16_LE) { |
| 359 | ch_stat1.status_1_regx.max_wrd_len = MAX_SMPL_WIDTH_20; |
| 360 | ch_stat1.status_1_regx.wrd_len = SMPL_WIDTH_16BITS; |
| 361 | } else if (format == SNDRV_PCM_FORMAT_S24_LE) { |
| 362 | ch_stat1.status_1_regx.max_wrd_len = MAX_SMPL_WIDTH_24; |
| 363 | ch_stat1.status_1_regx.wrd_len = SMPL_WIDTH_24BITS; |
| 364 | } else { |
| 365 | ch_stat1.status_1_regx.max_wrd_len = 0; |
| 366 | ch_stat1.status_1_regx.wrd_len = 0; |
| 367 | } |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 368 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 369 | had_write_register(intelhaddata, |
| 370 | AUD_CH_STATUS_1, ch_stat1.status_1_regval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 371 | return 0; |
| 372 | } |
| 373 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 374 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 375 | * function to initialize audio |
| 376 | * registers and buffer confgiuration registers |
| 377 | * This function is called in the prepare callback |
| 378 | */ |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 379 | static int snd_intelhad_audio_ctrl(struct snd_pcm_substream *substream, |
| 380 | struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 381 | { |
| 382 | union aud_cfg cfg_val = {.cfg_regval = 0}; |
| 383 | union aud_buf_config buf_cfg = {.buf_cfgval = 0}; |
| 384 | u8 channels; |
| 385 | |
| 386 | had_prog_status_reg(substream, intelhaddata); |
| 387 | |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 388 | buf_cfg.buf_cfg_regx.audio_fifo_watermark = FIFO_THRESHOLD; |
| 389 | buf_cfg.buf_cfg_regx.dma_fifo_watermark = DMA_FIFO_THRESHOLD; |
| 390 | buf_cfg.buf_cfg_regx.aud_delay = 0; |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 391 | had_write_register(intelhaddata, AUD_BUF_CONFIG, buf_cfg.buf_cfgval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 392 | |
| 393 | channels = substream->runtime->channels; |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 394 | cfg_val.cfg_regx.num_ch = channels - 2; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 395 | if (channels <= 2) |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 396 | cfg_val.cfg_regx.layout = LAYOUT0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 397 | else |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 398 | cfg_val.cfg_regx.layout = LAYOUT1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 399 | |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 400 | cfg_val.cfg_regx.val_bit = 1; |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 401 | had_write_register(intelhaddata, AUD_CONFIG, cfg_val.cfg_regval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 402 | return 0; |
| 403 | } |
| 404 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 405 | /* |
| 406 | * Compute derived values in channel_allocations[]. |
| 407 | */ |
| 408 | static void init_channel_allocations(void) |
| 409 | { |
| 410 | int i, j; |
| 411 | struct cea_channel_speaker_allocation *p; |
| 412 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 413 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) { |
| 414 | p = channel_allocations + i; |
| 415 | p->channels = 0; |
| 416 | p->spk_mask = 0; |
| 417 | for (j = 0; j < ARRAY_SIZE(p->speakers); j++) |
| 418 | if (p->speakers[j]) { |
| 419 | p->channels++; |
| 420 | p->spk_mask |= p->speakers[j]; |
| 421 | } |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | /* |
| 426 | * The transformation takes two steps: |
| 427 | * |
| 428 | * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask |
| 429 | * spk_mask => (channel_allocations[]) => ai->CA |
| 430 | * |
| 431 | * TODO: it could select the wrong CA from multiple candidates. |
| 432 | */ |
| 433 | static int snd_intelhad_channel_allocation(struct snd_intelhad *intelhaddata, |
| 434 | int channels) |
| 435 | { |
| 436 | int i; |
| 437 | int ca = 0; |
| 438 | int spk_mask = 0; |
| 439 | |
| 440 | /* |
| 441 | * CA defaults to 0 for basic stereo audio |
| 442 | */ |
| 443 | if (channels <= 2) |
| 444 | return 0; |
| 445 | |
| 446 | /* |
| 447 | * expand ELD's speaker allocation mask |
| 448 | * |
| 449 | * ELD tells the speaker mask in a compact(paired) form, |
| 450 | * expand ELD's notions to match the ones used by Audio InfoFrame. |
| 451 | */ |
| 452 | |
| 453 | for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 454 | if (intelhaddata->eld.speaker_allocation_block & (1 << i)) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 455 | spk_mask |= eld_speaker_allocation_bits[i]; |
| 456 | } |
| 457 | |
| 458 | /* search for the first working match in the CA table */ |
| 459 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) { |
| 460 | if (channels == channel_allocations[i].channels && |
| 461 | (spk_mask & channel_allocations[i].spk_mask) == |
| 462 | channel_allocations[i].spk_mask) { |
| 463 | ca = channel_allocations[i].ca_index; |
| 464 | break; |
| 465 | } |
| 466 | } |
| 467 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 468 | dev_dbg(intelhaddata->dev, "select CA 0x%x for %d\n", ca, channels); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 469 | |
| 470 | return ca; |
| 471 | } |
| 472 | |
| 473 | /* from speaker bit mask to ALSA API channel position */ |
| 474 | static int spk_to_chmap(int spk) |
| 475 | { |
Takashi Iwai | 4a5ddb2 | 2017-02-01 16:45:38 +0100 | [diff] [blame] | 476 | const struct channel_map_table *t = map_tables; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 477 | |
| 478 | for (; t->map; t++) { |
| 479 | if (t->spk_mask == spk) |
| 480 | return t->map; |
| 481 | } |
| 482 | return 0; |
| 483 | } |
| 484 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 485 | static void had_build_channel_allocation_map(struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 486 | { |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 487 | int i, c; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 488 | int spk_mask = 0; |
| 489 | struct snd_pcm_chmap_elem *chmap; |
| 490 | u8 eld_high, eld_high_mask = 0xF0; |
| 491 | u8 high_msb; |
| 492 | |
| 493 | chmap = kzalloc(sizeof(*chmap), GFP_KERNEL); |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 494 | if (!chmap) { |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 495 | intelhaddata->chmap->chmap = NULL; |
| 496 | return; |
| 497 | } |
| 498 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 499 | dev_dbg(intelhaddata->dev, "eld.speaker_allocation_block = %x\n", |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 500 | intelhaddata->eld.speaker_allocation_block); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 501 | |
| 502 | /* WA: Fix the max channel supported to 8 */ |
| 503 | |
| 504 | /* |
| 505 | * Sink may support more than 8 channels, if eld_high has more than |
| 506 | * one bit set. SOC supports max 8 channels. |
| 507 | * Refer eld_speaker_allocation_bits, for sink speaker allocation |
| 508 | */ |
| 509 | |
| 510 | /* if 0x2F < eld < 0x4F fall back to 0x2f, else fall back to 0x4F */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 511 | eld_high = intelhaddata->eld.speaker_allocation_block & eld_high_mask; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 512 | if ((eld_high & (eld_high-1)) && (eld_high > 0x1F)) { |
| 513 | /* eld_high & (eld_high-1): if more than 1 bit set */ |
| 514 | /* 0x1F: 7 channels */ |
| 515 | for (i = 1; i < 4; i++) { |
| 516 | high_msb = eld_high & (0x80 >> i); |
| 517 | if (high_msb) { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 518 | intelhaddata->eld.speaker_allocation_block &= |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 519 | high_msb | 0xF; |
| 520 | break; |
| 521 | } |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 526 | if (intelhaddata->eld.speaker_allocation_block & (1 << i)) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 527 | spk_mask |= eld_speaker_allocation_bits[i]; |
| 528 | } |
| 529 | |
| 530 | for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) { |
| 531 | if (spk_mask == channel_allocations[i].spk_mask) { |
| 532 | for (c = 0; c < channel_allocations[i].channels; c++) { |
| 533 | chmap->map[c] = spk_to_chmap( |
| 534 | channel_allocations[i].speakers[ |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 535 | (MAX_SPEAKERS - 1) - c]); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 536 | } |
| 537 | chmap->channels = channel_allocations[i].channels; |
| 538 | intelhaddata->chmap->chmap = chmap; |
| 539 | break; |
| 540 | } |
| 541 | } |
| 542 | if (i >= ARRAY_SIZE(channel_allocations)) { |
| 543 | intelhaddata->chmap->chmap = NULL; |
| 544 | kfree(chmap); |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * ALSA API channel-map control callbacks |
| 550 | */ |
| 551 | static int had_chmap_ctl_info(struct snd_kcontrol *kcontrol, |
| 552 | struct snd_ctl_elem_info *uinfo) |
| 553 | { |
| 554 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 555 | struct snd_intelhad *intelhaddata = info->private_data; |
| 556 | |
| 557 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 558 | return -ENODEV; |
| 559 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 560 | uinfo->count = HAD_MAX_CHANNEL; |
| 561 | uinfo->value.integer.min = 0; |
| 562 | uinfo->value.integer.max = SNDRV_CHMAP_LAST; |
| 563 | return 0; |
| 564 | } |
| 565 | |
| 566 | static int had_chmap_ctl_get(struct snd_kcontrol *kcontrol, |
| 567 | struct snd_ctl_elem_value *ucontrol) |
| 568 | { |
| 569 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 570 | struct snd_intelhad *intelhaddata = info->private_data; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 571 | int i; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 572 | const struct snd_pcm_chmap_elem *chmap; |
| 573 | |
| 574 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 575 | return -ENODEV; |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 576 | |
| 577 | mutex_lock(&intelhaddata->mutex); |
| 578 | if (!intelhaddata->chmap->chmap) { |
| 579 | mutex_unlock(&intelhaddata->mutex); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 580 | return -ENODATA; |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 581 | } |
| 582 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 583 | chmap = intelhaddata->chmap->chmap; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 584 | for (i = 0; i < chmap->channels; i++) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 585 | ucontrol->value.integer.value[i] = chmap->map[i]; |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 586 | mutex_unlock(&intelhaddata->mutex); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 587 | |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | static int had_register_chmap_ctls(struct snd_intelhad *intelhaddata, |
| 592 | struct snd_pcm *pcm) |
| 593 | { |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 594 | int err; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 595 | |
| 596 | err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK, |
| 597 | NULL, 0, (unsigned long)intelhaddata, |
| 598 | &intelhaddata->chmap); |
| 599 | if (err < 0) |
| 600 | return err; |
| 601 | |
| 602 | intelhaddata->chmap->private_data = intelhaddata; |
Takashi Iwai | e9d65ab | 2017-01-31 16:11:27 +0100 | [diff] [blame] | 603 | intelhaddata->chmap->kctl->info = had_chmap_ctl_info; |
| 604 | intelhaddata->chmap->kctl->get = had_chmap_ctl_get; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 605 | intelhaddata->chmap->chmap = NULL; |
| 606 | return 0; |
| 607 | } |
| 608 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 609 | /* |
| 610 | * snd_intelhad_prog_dip - to initialize Data Island Packets registers |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 611 | * |
| 612 | * @substream:substream for which the prepare function is called |
| 613 | * @intelhaddata:substream private data |
| 614 | * |
| 615 | * This function is called in the prepare callback |
| 616 | */ |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 617 | static void snd_intelhad_prog_dip(struct snd_pcm_substream *substream, |
| 618 | struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 619 | { |
| 620 | int i; |
| 621 | union aud_ctrl_st ctrl_state = {.ctrl_val = 0}; |
| 622 | union aud_info_frame2 frame2 = {.fr2_val = 0}; |
| 623 | union aud_info_frame3 frame3 = {.fr3_val = 0}; |
| 624 | u8 checksum = 0; |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 625 | u32 info_frame; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 626 | int channels; |
| 627 | |
| 628 | channels = substream->runtime->channels; |
| 629 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 630 | had_write_register(intelhaddata, AUD_CNTL_ST, ctrl_state.ctrl_val); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 631 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 632 | if (intelhaddata->dp_output) { |
| 633 | info_frame = DP_INFO_FRAME_WORD1; |
| 634 | frame2.fr2_val = 1; |
| 635 | } else { |
| 636 | info_frame = HDMI_INFO_FRAME_WORD1; |
| 637 | frame2.fr2_regx.chnl_cnt = substream->runtime->channels - 1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 638 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 639 | frame3.fr3_regx.chnl_alloc = snd_intelhad_channel_allocation( |
| 640 | intelhaddata, channels); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 641 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 642 | /* Calculte the byte wide checksum for all valid DIP words */ |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 643 | for (i = 0; i < BYTES_PER_WORD; i++) |
| 644 | checksum += (info_frame >> i*BITS_PER_BYTE) & MASK_BYTE0; |
| 645 | for (i = 0; i < BYTES_PER_WORD; i++) |
| 646 | checksum += (frame2.fr2_val >> i*BITS_PER_BYTE) & MASK_BYTE0; |
| 647 | for (i = 0; i < BYTES_PER_WORD; i++) |
| 648 | checksum += (frame3.fr3_val >> i*BITS_PER_BYTE) & MASK_BYTE0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 649 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 650 | frame2.fr2_regx.chksum = -(checksum); |
| 651 | } |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 652 | |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 653 | had_write_register(intelhaddata, AUD_HDMIW_INFOFR, info_frame); |
| 654 | had_write_register(intelhaddata, AUD_HDMIW_INFOFR, frame2.fr2_val); |
| 655 | had_write_register(intelhaddata, AUD_HDMIW_INFOFR, frame3.fr3_val); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 656 | |
| 657 | /* program remaining DIP words with zero */ |
| 658 | for (i = 0; i < HAD_MAX_DIP_WORDS-VALID_DIP_WORDS; i++) |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 659 | had_write_register(intelhaddata, AUD_HDMIW_INFOFR, 0x0); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 660 | |
| 661 | ctrl_state.ctrl_regx.dip_freq = 1; |
| 662 | ctrl_state.ctrl_regx.dip_en_sta = 1; |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 663 | had_write_register(intelhaddata, AUD_CNTL_ST, ctrl_state.ctrl_val); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 664 | } |
| 665 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 666 | /* |
| 667 | * snd_intelhad_prog_buffer - programs buffer address and length registers |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 668 | * @substream: substream for which the prepare function is called |
| 669 | * @intelhaddata: substream private data |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 670 | * |
| 671 | * This function programs ring buffer address and length into registers. |
| 672 | */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 673 | static int snd_intelhad_prog_buffer(struct snd_pcm_substream *substream, |
| 674 | struct snd_intelhad *intelhaddata, |
| 675 | int start, int end) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 676 | { |
| 677 | u32 ring_buf_addr, ring_buf_size, period_bytes; |
| 678 | u8 i, num_periods; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 679 | |
| 680 | ring_buf_addr = substream->runtime->dma_addr; |
| 681 | ring_buf_size = snd_pcm_lib_buffer_bytes(substream); |
| 682 | intelhaddata->stream_info.ring_buf_size = ring_buf_size; |
| 683 | period_bytes = frames_to_bytes(substream->runtime, |
| 684 | substream->runtime->period_size); |
| 685 | num_periods = substream->runtime->periods; |
| 686 | |
| 687 | /* |
| 688 | * buffer addr should be 64 byte aligned, period bytes |
| 689 | * will be used to calculate addr offset |
| 690 | */ |
| 691 | period_bytes &= ~0x3F; |
| 692 | |
| 693 | /* Hardware supports MAX_PERIODS buffers */ |
| 694 | if (end >= HAD_MAX_PERIODS) |
| 695 | return -EINVAL; |
| 696 | |
| 697 | for (i = start; i <= end; i++) { |
| 698 | /* Program the buf registers with addr and len */ |
| 699 | intelhaddata->buf_info[i].buf_addr = ring_buf_addr + |
| 700 | (i * period_bytes); |
| 701 | if (i < num_periods-1) |
| 702 | intelhaddata->buf_info[i].buf_size = period_bytes; |
| 703 | else |
| 704 | intelhaddata->buf_info[i].buf_size = ring_buf_size - |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 705 | (i * period_bytes); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 706 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 707 | had_write_register(intelhaddata, |
| 708 | AUD_BUF_A_ADDR + (i * HAD_REG_WIDTH), |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 709 | intelhaddata->buf_info[i].buf_addr | |
| 710 | BIT(0) | BIT(1)); |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 711 | had_write_register(intelhaddata, |
| 712 | AUD_BUF_A_LENGTH + (i * HAD_REG_WIDTH), |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 713 | period_bytes); |
| 714 | intelhaddata->buf_info[i].is_valid = true; |
| 715 | } |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 716 | dev_dbg(intelhaddata->dev, "%s:buf[%d-%d] addr=%#x and size=%d\n", |
| 717 | __func__, start, end, |
| 718 | intelhaddata->buf_info[start].buf_addr, |
| 719 | intelhaddata->buf_info[start].buf_size); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 720 | intelhaddata->valid_buf_cnt = num_periods; |
| 721 | return 0; |
| 722 | } |
| 723 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 724 | static int snd_intelhad_read_len(struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 725 | { |
| 726 | int i, retval = 0; |
| 727 | u32 len[4]; |
| 728 | |
| 729 | for (i = 0; i < 4 ; i++) { |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 730 | had_read_register(intelhaddata, |
| 731 | AUD_BUF_A_LENGTH + (i * HAD_REG_WIDTH), |
| 732 | &len[i]); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 733 | if (!len[i]) |
| 734 | retval++; |
| 735 | } |
| 736 | if (retval != 1) { |
| 737 | for (i = 0; i < 4 ; i++) |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 738 | dev_dbg(intelhaddata->dev, "buf[%d] size=%d\n", |
| 739 | i, len[i]); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | return retval; |
| 743 | } |
| 744 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 745 | static int had_calculate_maud_value(u32 aud_samp_freq, u32 link_rate) |
| 746 | { |
| 747 | u32 maud_val; |
| 748 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 749 | /* Select maud according to DP 1.2 spec */ |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 750 | if (link_rate == DP_2_7_GHZ) { |
| 751 | switch (aud_samp_freq) { |
| 752 | case AUD_SAMPLE_RATE_32: |
| 753 | maud_val = AUD_SAMPLE_RATE_32_DP_2_7_MAUD_VAL; |
| 754 | break; |
| 755 | |
| 756 | case AUD_SAMPLE_RATE_44_1: |
| 757 | maud_val = AUD_SAMPLE_RATE_44_1_DP_2_7_MAUD_VAL; |
| 758 | break; |
| 759 | |
| 760 | case AUD_SAMPLE_RATE_48: |
| 761 | maud_val = AUD_SAMPLE_RATE_48_DP_2_7_MAUD_VAL; |
| 762 | break; |
| 763 | |
| 764 | case AUD_SAMPLE_RATE_88_2: |
| 765 | maud_val = AUD_SAMPLE_RATE_88_2_DP_2_7_MAUD_VAL; |
| 766 | break; |
| 767 | |
| 768 | case AUD_SAMPLE_RATE_96: |
| 769 | maud_val = AUD_SAMPLE_RATE_96_DP_2_7_MAUD_VAL; |
| 770 | break; |
| 771 | |
| 772 | case AUD_SAMPLE_RATE_176_4: |
| 773 | maud_val = AUD_SAMPLE_RATE_176_4_DP_2_7_MAUD_VAL; |
| 774 | break; |
| 775 | |
| 776 | case HAD_MAX_RATE: |
| 777 | maud_val = HAD_MAX_RATE_DP_2_7_MAUD_VAL; |
| 778 | break; |
| 779 | |
| 780 | default: |
| 781 | maud_val = -EINVAL; |
| 782 | break; |
| 783 | } |
| 784 | } else if (link_rate == DP_1_62_GHZ) { |
| 785 | switch (aud_samp_freq) { |
| 786 | case AUD_SAMPLE_RATE_32: |
| 787 | maud_val = AUD_SAMPLE_RATE_32_DP_1_62_MAUD_VAL; |
| 788 | break; |
| 789 | |
| 790 | case AUD_SAMPLE_RATE_44_1: |
| 791 | maud_val = AUD_SAMPLE_RATE_44_1_DP_1_62_MAUD_VAL; |
| 792 | break; |
| 793 | |
| 794 | case AUD_SAMPLE_RATE_48: |
| 795 | maud_val = AUD_SAMPLE_RATE_48_DP_1_62_MAUD_VAL; |
| 796 | break; |
| 797 | |
| 798 | case AUD_SAMPLE_RATE_88_2: |
| 799 | maud_val = AUD_SAMPLE_RATE_88_2_DP_1_62_MAUD_VAL; |
| 800 | break; |
| 801 | |
| 802 | case AUD_SAMPLE_RATE_96: |
| 803 | maud_val = AUD_SAMPLE_RATE_96_DP_1_62_MAUD_VAL; |
| 804 | break; |
| 805 | |
| 806 | case AUD_SAMPLE_RATE_176_4: |
| 807 | maud_val = AUD_SAMPLE_RATE_176_4_DP_1_62_MAUD_VAL; |
| 808 | break; |
| 809 | |
| 810 | case HAD_MAX_RATE: |
| 811 | maud_val = HAD_MAX_RATE_DP_1_62_MAUD_VAL; |
| 812 | break; |
| 813 | |
| 814 | default: |
| 815 | maud_val = -EINVAL; |
| 816 | break; |
| 817 | } |
| 818 | } else |
| 819 | maud_val = -EINVAL; |
| 820 | |
| 821 | return maud_val; |
| 822 | } |
| 823 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 824 | /* |
| 825 | * snd_intelhad_prog_cts - Program HDMI audio CTS value |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 826 | * |
| 827 | * @aud_samp_freq: sampling frequency of audio data |
| 828 | * @tmds: sampling frequency of the display data |
| 829 | * @n_param: N value, depends on aud_samp_freq |
| 830 | * @intelhaddata:substream private data |
| 831 | * |
| 832 | * Program CTS register based on the audio and display sampling frequency |
| 833 | */ |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 834 | static void snd_intelhad_prog_cts(u32 aud_samp_freq, u32 tmds, |
| 835 | u32 link_rate, u32 n_param, |
| 836 | struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 837 | { |
| 838 | u32 cts_val; |
| 839 | u64 dividend, divisor; |
| 840 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 841 | if (intelhaddata->dp_output) { |
| 842 | /* Substitute cts_val with Maud according to DP 1.2 spec*/ |
| 843 | cts_val = had_calculate_maud_value(aud_samp_freq, link_rate); |
| 844 | } else { |
| 845 | /* Calculate CTS according to HDMI 1.3a spec*/ |
| 846 | dividend = (u64)tmds * n_param*1000; |
| 847 | divisor = 128 * aud_samp_freq; |
| 848 | cts_val = div64_u64(dividend, divisor); |
| 849 | } |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 850 | dev_dbg(intelhaddata->dev, "TMDS value=%d, N value=%d, CTS Value=%d\n", |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 851 | tmds, n_param, cts_val); |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 852 | had_write_register(intelhaddata, AUD_HDMI_CTS, (BIT(24) | cts_val)); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | static int had_calculate_n_value(u32 aud_samp_freq) |
| 856 | { |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 857 | int n_val; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 858 | |
| 859 | /* Select N according to HDMI 1.3a spec*/ |
| 860 | switch (aud_samp_freq) { |
| 861 | case AUD_SAMPLE_RATE_32: |
| 862 | n_val = 4096; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 863 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 864 | |
| 865 | case AUD_SAMPLE_RATE_44_1: |
| 866 | n_val = 6272; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 867 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 868 | |
| 869 | case AUD_SAMPLE_RATE_48: |
| 870 | n_val = 6144; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 871 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 872 | |
| 873 | case AUD_SAMPLE_RATE_88_2: |
| 874 | n_val = 12544; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 875 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 876 | |
| 877 | case AUD_SAMPLE_RATE_96: |
| 878 | n_val = 12288; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 879 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 880 | |
| 881 | case AUD_SAMPLE_RATE_176_4: |
| 882 | n_val = 25088; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 883 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 884 | |
| 885 | case HAD_MAX_RATE: |
| 886 | n_val = 24576; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 887 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 888 | |
| 889 | default: |
| 890 | n_val = -EINVAL; |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 891 | break; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 892 | } |
| 893 | return n_val; |
| 894 | } |
| 895 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 896 | /* |
| 897 | * snd_intelhad_prog_n - Program HDMI audio N value |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 898 | * |
| 899 | * @aud_samp_freq: sampling frequency of audio data |
| 900 | * @n_param: N value, depends on aud_samp_freq |
| 901 | * @intelhaddata:substream private data |
| 902 | * |
| 903 | * This function is called in the prepare callback. |
| 904 | * It programs based on the audio and display sampling frequency |
| 905 | */ |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 906 | static int snd_intelhad_prog_n(u32 aud_samp_freq, u32 *n_param, |
| 907 | struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 908 | { |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 909 | int n_val; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 910 | |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 911 | if (intelhaddata->dp_output) { |
| 912 | /* |
| 913 | * According to DP specs, Maud and Naud values hold |
| 914 | * a relationship, which is stated as: |
| 915 | * Maud/Naud = 512 * fs / f_LS_Clk |
| 916 | * where, fs is the sampling frequency of the audio stream |
| 917 | * and Naud is 32768 for Async clock. |
| 918 | */ |
| 919 | |
| 920 | n_val = DP_NAUD_VAL; |
| 921 | } else |
| 922 | n_val = had_calculate_n_value(aud_samp_freq); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 923 | |
| 924 | if (n_val < 0) |
| 925 | return n_val; |
| 926 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 927 | had_write_register(intelhaddata, AUD_N_ENABLE, (BIT(24) | n_val)); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 928 | *n_param = n_val; |
| 929 | return 0; |
| 930 | } |
| 931 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 932 | static void snd_intelhad_handle_underrun(struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 933 | { |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 934 | u32 hdmi_status = 0, i = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 935 | |
| 936 | /* Handle Underrun interrupt within Audio Unit */ |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 937 | had_write_register(intelhaddata, AUD_CONFIG, 0); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 938 | /* Reset buffer pointers */ |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 939 | had_write_register(intelhaddata, AUD_HDMI_STATUS, 1); |
| 940 | had_write_register(intelhaddata, AUD_HDMI_STATUS, 0); |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 941 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 942 | * The interrupt status 'sticky' bits might not be cleared by |
| 943 | * setting '1' to that bit once... |
| 944 | */ |
| 945 | do { /* clear bit30, 31 AUD_HDMI_STATUS */ |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 946 | had_read_register(intelhaddata, AUD_HDMI_STATUS, |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 947 | &hdmi_status); |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 948 | dev_dbg(intelhaddata->dev, "HDMI status =0x%x\n", hdmi_status); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 949 | if (hdmi_status & AUD_CONFIG_MASK_UNDERRUN) { |
| 950 | i++; |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 951 | had_write_register(intelhaddata, |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 952 | AUD_HDMI_STATUS, hdmi_status); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 953 | } else |
| 954 | break; |
| 955 | } while (i < MAX_CNT); |
| 956 | if (i >= MAX_CNT) |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 957 | dev_err(intelhaddata->dev, "Unable to clear UNDERRUN bits\n"); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 958 | } |
| 959 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 960 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 961 | * snd_intelhad_open - stream initializations are done here |
| 962 | * @substream:substream for which the stream function is called |
| 963 | * |
| 964 | * This function is called whenever a PCM stream is opened |
| 965 | */ |
| 966 | static int snd_intelhad_open(struct snd_pcm_substream *substream) |
| 967 | { |
| 968 | struct snd_intelhad *intelhaddata; |
| 969 | struct snd_pcm_runtime *runtime; |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 970 | struct had_stream_data *had_stream; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 971 | int retval; |
| 972 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 973 | intelhaddata = snd_pcm_substream_chip(substream); |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 974 | had_stream = &intelhaddata->stream_data; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 975 | runtime = substream->runtime; |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 976 | intelhaddata->underrun_count = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 977 | |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 978 | pm_runtime_get_sync(intelhaddata->dev); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 979 | |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 980 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 981 | dev_dbg(intelhaddata->dev, "%s: HDMI cable plugged-out\n", |
| 982 | __func__); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 983 | retval = -ENODEV; |
Takashi Iwai | fa5dfe6 | 2017-02-01 22:03:26 +0100 | [diff] [blame] | 984 | goto error; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | /* set the runtime hw parameter with local snd_pcm_hardware struct */ |
| 988 | runtime->hw = snd_intel_hadstream; |
| 989 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 990 | retval = snd_pcm_hw_constraint_integer(runtime, |
| 991 | SNDRV_PCM_HW_PARAM_PERIODS); |
| 992 | if (retval < 0) |
Takashi Iwai | fa5dfe6 | 2017-02-01 22:03:26 +0100 | [diff] [blame] | 993 | goto error; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 994 | |
| 995 | /* Make sure, that the period size is always aligned |
| 996 | * 64byte boundary |
| 997 | */ |
| 998 | retval = snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 999 | SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 64); |
| 1000 | if (retval < 0) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1001 | dev_dbg(intelhaddata->dev, "%s:step_size=64 failed,err=%d\n", |
| 1002 | __func__, retval); |
Takashi Iwai | fa5dfe6 | 2017-02-01 22:03:26 +0100 | [diff] [blame] | 1003 | goto error; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1004 | } |
| 1005 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1006 | spin_lock_irq(&intelhaddata->had_spinlock); |
| 1007 | intelhaddata->stream_info.substream = substream; |
| 1008 | intelhaddata->stream_info.substream_refcount++; |
| 1009 | spin_unlock_irq(&intelhaddata->had_spinlock); |
| 1010 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1011 | return retval; |
Takashi Iwai | fa5dfe6 | 2017-02-01 22:03:26 +0100 | [diff] [blame] | 1012 | error: |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1013 | pm_runtime_put(intelhaddata->dev); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1014 | return retval; |
| 1015 | } |
| 1016 | |
Takashi Iwai | df76df1 | 2017-01-31 16:04:10 +0100 | [diff] [blame] | 1017 | /* |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1018 | * snd_intelhad_close - to free parameteres when stream is stopped |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1019 | * @substream: substream for which the function is called |
| 1020 | * |
| 1021 | * This function is called by ALSA framework when stream is stopped |
| 1022 | */ |
| 1023 | static int snd_intelhad_close(struct snd_pcm_substream *substream) |
| 1024 | { |
| 1025 | struct snd_intelhad *intelhaddata; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1026 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1027 | intelhaddata = snd_pcm_substream_chip(substream); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1028 | |
| 1029 | intelhaddata->stream_info.buffer_rendered = 0; |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1030 | spin_lock_irq(&intelhaddata->had_spinlock); |
| 1031 | intelhaddata->stream_info.substream = NULL; |
| 1032 | intelhaddata->stream_info.substream_refcount--; |
| 1033 | while (intelhaddata->stream_info.substream_refcount > 0) { |
| 1034 | spin_unlock_irq(&intelhaddata->had_spinlock); |
| 1035 | cpu_relax(); |
| 1036 | spin_lock_irq(&intelhaddata->had_spinlock); |
| 1037 | } |
| 1038 | spin_unlock_irq(&intelhaddata->had_spinlock); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1039 | |
| 1040 | /* Check if following drv_status modification is required - VA */ |
| 1041 | if (intelhaddata->drv_status != HAD_DRV_DISCONNECTED) { |
| 1042 | intelhaddata->drv_status = HAD_DRV_CONNECTED; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1043 | dev_dbg(intelhaddata->dev, |
| 1044 | "%s @ %d:DEBUG PLUG/UNPLUG : HAD_DRV_CONNECTED\n", |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1045 | __func__, __LINE__); |
| 1046 | } |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1047 | pm_runtime_put(intelhaddata->dev); |
| 1048 | return 0; |
| 1049 | } |
| 1050 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1051 | /* |
| 1052 | * snd_intelhad_hw_params - to setup the hardware parameters |
| 1053 | * like allocating the buffers |
| 1054 | * @substream: substream for which the function is called |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1055 | * @hw_params: hardware parameters |
| 1056 | * |
| 1057 | * This function is called by ALSA framework when hardware params are set |
| 1058 | */ |
| 1059 | static int snd_intelhad_hw_params(struct snd_pcm_substream *substream, |
| 1060 | struct snd_pcm_hw_params *hw_params) |
| 1061 | { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1062 | struct snd_intelhad *intelhaddata; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1063 | unsigned long addr; |
| 1064 | int pages, buf_size, retval; |
| 1065 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1066 | if (!hw_params) |
| 1067 | return -EINVAL; |
| 1068 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1069 | intelhaddata = snd_pcm_substream_chip(substream); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1070 | buf_size = params_buffer_bytes(hw_params); |
| 1071 | retval = snd_pcm_lib_malloc_pages(substream, buf_size); |
| 1072 | if (retval < 0) |
| 1073 | return retval; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1074 | dev_dbg(intelhaddata->dev, "%s:allocated memory = %d\n", |
| 1075 | __func__, buf_size); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1076 | /* mark the pages as uncached region */ |
| 1077 | addr = (unsigned long) substream->runtime->dma_area; |
| 1078 | pages = (substream->runtime->dma_bytes + PAGE_SIZE - 1) / PAGE_SIZE; |
| 1079 | retval = set_memory_uc(addr, pages); |
| 1080 | if (retval) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1081 | dev_err(intelhaddata->dev, "set_memory_uc failed.Error:%d\n", |
| 1082 | retval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1083 | return retval; |
| 1084 | } |
| 1085 | memset(substream->runtime->dma_area, 0, buf_size); |
| 1086 | |
| 1087 | return retval; |
| 1088 | } |
| 1089 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1090 | /* |
| 1091 | * snd_intelhad_hw_free - to release the resources allocated during |
| 1092 | * hardware params setup |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1093 | * @substream: substream for which the function is called |
| 1094 | * |
| 1095 | * This function is called by ALSA framework before close callback. |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1096 | */ |
| 1097 | static int snd_intelhad_hw_free(struct snd_pcm_substream *substream) |
| 1098 | { |
| 1099 | unsigned long addr; |
| 1100 | u32 pages; |
| 1101 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1102 | /* mark back the pages as cached/writeback region before the free */ |
| 1103 | if (substream->runtime->dma_area != NULL) { |
| 1104 | addr = (unsigned long) substream->runtime->dma_area; |
| 1105 | pages = (substream->runtime->dma_bytes + PAGE_SIZE - 1) / |
| 1106 | PAGE_SIZE; |
| 1107 | set_memory_wb(addr, pages); |
| 1108 | return snd_pcm_lib_free_pages(substream); |
| 1109 | } |
| 1110 | return 0; |
| 1111 | } |
| 1112 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1113 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1114 | * snd_intelhad_pcm_trigger - stream activities are handled here |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1115 | * @substream: substream for which the stream function is called |
| 1116 | * @cmd: the stream commamd thats requested from upper layer |
| 1117 | * |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1118 | * This function is called whenever an a stream activity is invoked |
| 1119 | */ |
| 1120 | static int snd_intelhad_pcm_trigger(struct snd_pcm_substream *substream, |
| 1121 | int cmd) |
| 1122 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1123 | int retval = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1124 | struct snd_intelhad *intelhaddata; |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1125 | struct had_stream_data *had_stream; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1126 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1127 | intelhaddata = snd_pcm_substream_chip(substream); |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1128 | had_stream = &intelhaddata->stream_data; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1129 | |
| 1130 | switch (cmd) { |
| 1131 | case SNDRV_PCM_TRIGGER_START: |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 1132 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 1133 | case SNDRV_PCM_TRIGGER_RESUME: |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1134 | /* Disable local INTRs till register prgmng is done */ |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 1135 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1136 | dev_dbg(intelhaddata->dev, |
| 1137 | "_START: HDMI cable plugged-out\n"); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1138 | retval = -ENODEV; |
| 1139 | break; |
| 1140 | } |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1141 | |
| 1142 | had_stream->stream_type = HAD_RUNNING_STREAM; |
| 1143 | |
| 1144 | /* Enable Audio */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1145 | snd_intelhad_enable_audio_int(intelhaddata, true); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1146 | snd_intelhad_enable_audio(substream, intelhaddata, true); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1147 | break; |
| 1148 | |
| 1149 | case SNDRV_PCM_TRIGGER_STOP: |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 1150 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 1151 | case SNDRV_PCM_TRIGGER_SUSPEND: |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1152 | spin_lock(&intelhaddata->had_spinlock); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1153 | intelhaddata->curr_buf = 0; |
| 1154 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1155 | /* Stop reporting BUFFER_DONE/UNDERRUN to above layers */ |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1156 | |
| 1157 | had_stream->stream_type = HAD_INIT; |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1158 | spin_unlock(&intelhaddata->had_spinlock); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1159 | /* Disable Audio */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1160 | snd_intelhad_enable_audio_int(intelhaddata, false); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1161 | snd_intelhad_enable_audio(substream, intelhaddata, false); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1162 | /* Reset buffer pointers */ |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 1163 | snd_intelhad_reset_audio(intelhaddata, 1); |
| 1164 | snd_intelhad_reset_audio(intelhaddata, 0); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1165 | snd_intelhad_enable_audio_int(intelhaddata, false); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1166 | break; |
| 1167 | |
| 1168 | default: |
| 1169 | retval = -EINVAL; |
| 1170 | } |
| 1171 | return retval; |
| 1172 | } |
| 1173 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1174 | /* |
| 1175 | * snd_intelhad_pcm_prepare - internal preparation before starting a stream |
| 1176 | * @substream: substream for which the function is called |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1177 | * |
| 1178 | * This function is called when a stream is started for internal preparation. |
| 1179 | */ |
| 1180 | static int snd_intelhad_pcm_prepare(struct snd_pcm_substream *substream) |
| 1181 | { |
| 1182 | int retval; |
| 1183 | u32 disp_samp_freq, n_param; |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1184 | u32 link_rate = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1185 | struct snd_intelhad *intelhaddata; |
| 1186 | struct snd_pcm_runtime *runtime; |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1187 | struct had_stream_data *had_stream; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1188 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1189 | intelhaddata = snd_pcm_substream_chip(substream); |
| 1190 | runtime = substream->runtime; |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1191 | had_stream = &intelhaddata->stream_data; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1192 | |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 1193 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1194 | dev_dbg(intelhaddata->dev, "%s: HDMI cable plugged-out\n", |
| 1195 | __func__); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1196 | retval = -ENODEV; |
| 1197 | goto prep_end; |
| 1198 | } |
| 1199 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1200 | dev_dbg(intelhaddata->dev, "period_size=%d\n", |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1201 | (int)frames_to_bytes(runtime, runtime->period_size)); |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1202 | dev_dbg(intelhaddata->dev, "periods=%d\n", runtime->periods); |
| 1203 | dev_dbg(intelhaddata->dev, "buffer_size=%d\n", |
| 1204 | (int)snd_pcm_lib_buffer_bytes(substream)); |
| 1205 | dev_dbg(intelhaddata->dev, "rate=%d\n", runtime->rate); |
| 1206 | dev_dbg(intelhaddata->dev, "channels=%d\n", runtime->channels); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1207 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1208 | intelhaddata->stream_info.buffer_rendered = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1209 | |
| 1210 | /* Get N value in KHz */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1211 | disp_samp_freq = intelhaddata->tmds_clock_speed; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1212 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1213 | retval = snd_intelhad_prog_n(substream->runtime->rate, &n_param, |
| 1214 | intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1215 | if (retval) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1216 | dev_err(intelhaddata->dev, |
| 1217 | "programming N value failed %#x\n", retval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1218 | goto prep_end; |
| 1219 | } |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1220 | |
| 1221 | if (intelhaddata->dp_output) |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1222 | link_rate = intelhaddata->link_rate; |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1223 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1224 | snd_intelhad_prog_cts(substream->runtime->rate, |
| 1225 | disp_samp_freq, link_rate, |
| 1226 | n_param, intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1227 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1228 | snd_intelhad_prog_dip(substream, intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1229 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1230 | retval = snd_intelhad_audio_ctrl(substream, intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1231 | |
| 1232 | /* Prog buffer address */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1233 | retval = snd_intelhad_prog_buffer(substream, intelhaddata, |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1234 | HAD_BUF_TYPE_A, HAD_BUF_TYPE_D); |
| 1235 | |
| 1236 | /* |
| 1237 | * Program channel mapping in following order: |
| 1238 | * FL, FR, C, LFE, RL, RR |
| 1239 | */ |
| 1240 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 1241 | had_write_register(intelhaddata, AUD_BUF_CH_SWAP, SWAP_LFE_CENTER); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1242 | |
| 1243 | prep_end: |
| 1244 | return retval; |
| 1245 | } |
| 1246 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1247 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1248 | * snd_intelhad_pcm_pointer- to send the current buffer pointerprocessed by hw |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1249 | * @substream: substream for which the function is called |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1250 | * |
| 1251 | * This function is called by ALSA framework to get the current hw buffer ptr |
| 1252 | * when a period is elapsed |
| 1253 | */ |
| 1254 | static snd_pcm_uframes_t snd_intelhad_pcm_pointer( |
| 1255 | struct snd_pcm_substream *substream) |
| 1256 | { |
| 1257 | struct snd_intelhad *intelhaddata; |
| 1258 | u32 bytes_rendered = 0; |
| 1259 | u32 t; |
| 1260 | int buf_id; |
| 1261 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1262 | intelhaddata = snd_pcm_substream_chip(substream); |
| 1263 | |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 1264 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) |
| 1265 | return SNDRV_PCM_POS_XRUN; |
| 1266 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1267 | /* Use a hw register to calculate sub-period position reports. |
| 1268 | * This makes PulseAudio happier. |
| 1269 | */ |
| 1270 | |
| 1271 | buf_id = intelhaddata->curr_buf % 4; |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 1272 | had_read_register(intelhaddata, |
| 1273 | AUD_BUF_A_LENGTH + (buf_id * HAD_REG_WIDTH), &t); |
Jerome Anand | 232892f | 2017-01-25 04:27:53 +0530 | [diff] [blame] | 1274 | |
| 1275 | if ((t == 0) || (t == ((u32)-1L))) { |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 1276 | intelhaddata->underrun_count++; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1277 | dev_dbg(intelhaddata->dev, |
| 1278 | "discovered buffer done for buf %d, count = %d\n", |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 1279 | buf_id, intelhaddata->underrun_count); |
Jerome Anand | 232892f | 2017-01-25 04:27:53 +0530 | [diff] [blame] | 1280 | |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 1281 | if (intelhaddata->underrun_count > (HAD_MIN_PERIODS/2)) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1282 | dev_dbg(intelhaddata->dev, |
| 1283 | "assume audio_codec_reset, underrun = %d - do xrun\n", |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 1284 | intelhaddata->underrun_count); |
| 1285 | intelhaddata->underrun_count = 0; |
Jerome Anand | 232892f | 2017-01-25 04:27:53 +0530 | [diff] [blame] | 1286 | return SNDRV_PCM_POS_XRUN; |
| 1287 | } |
| 1288 | } else { |
| 1289 | /* Reset Counter */ |
Takashi Iwai | 6ddb3ab | 2017-01-30 18:17:44 +0100 | [diff] [blame] | 1290 | intelhaddata->underrun_count = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1291 | } |
Jerome Anand | 232892f | 2017-01-25 04:27:53 +0530 | [diff] [blame] | 1292 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1293 | t = intelhaddata->buf_info[buf_id].buf_size - t; |
| 1294 | |
| 1295 | if (intelhaddata->stream_info.buffer_rendered) |
| 1296 | div_u64_rem(intelhaddata->stream_info.buffer_rendered, |
| 1297 | intelhaddata->stream_info.ring_buf_size, |
| 1298 | &(bytes_rendered)); |
| 1299 | |
Takashi Iwai | 7d9e798 | 2017-02-01 22:25:58 +0100 | [diff] [blame] | 1300 | return bytes_to_frames(substream->runtime, bytes_rendered + t); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1301 | } |
| 1302 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1303 | /* |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1304 | * snd_intelhad_pcm_mmap- mmaps a kernel buffer to user space for copying data |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1305 | * @substream: substream for which the function is called |
| 1306 | * @vma: struct instance of memory VMM memory area |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1307 | * |
| 1308 | * This function is called by OS when a user space component |
| 1309 | * tries to get mmap memory from driver |
| 1310 | */ |
| 1311 | static int snd_intelhad_pcm_mmap(struct snd_pcm_substream *substream, |
| 1312 | struct vm_area_struct *vma) |
| 1313 | { |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1314 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
| 1315 | return remap_pfn_range(vma, vma->vm_start, |
| 1316 | substream->dma_buffer.addr >> PAGE_SHIFT, |
| 1317 | vma->vm_end - vma->vm_start, vma->vm_page_prot); |
| 1318 | } |
| 1319 | |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1320 | /* process mode change of the running stream; called in mutex */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1321 | static int hdmi_audio_mode_change(struct snd_intelhad *intelhaddata) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1322 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1323 | struct snd_pcm_substream *substream; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1324 | int retval = 0; |
| 1325 | u32 disp_samp_freq, n_param; |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1326 | u32 link_rate = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1327 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1328 | substream = had_substream_get(intelhaddata); |
| 1329 | if (!substream) |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1330 | return 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1331 | |
| 1332 | /* Disable Audio */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1333 | snd_intelhad_enable_audio(substream, intelhaddata, false); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1334 | |
| 1335 | /* Update CTS value */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1336 | disp_samp_freq = intelhaddata->tmds_clock_speed; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1337 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1338 | retval = snd_intelhad_prog_n(substream->runtime->rate, &n_param, |
| 1339 | intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1340 | if (retval) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1341 | dev_err(intelhaddata->dev, |
| 1342 | "programming N value failed %#x\n", retval); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1343 | goto out; |
| 1344 | } |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1345 | |
| 1346 | if (intelhaddata->dp_output) |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1347 | link_rate = intelhaddata->link_rate; |
Pierre-Louis Bossart | 964ca80 | 2017-01-31 14:16:52 -0600 | [diff] [blame] | 1348 | |
Takashi Iwai | 76296ef | 2017-01-30 16:09:11 +0100 | [diff] [blame] | 1349 | snd_intelhad_prog_cts(substream->runtime->rate, |
| 1350 | disp_samp_freq, link_rate, |
| 1351 | n_param, intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1352 | |
| 1353 | /* Enable Audio */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1354 | snd_intelhad_enable_audio(substream, intelhaddata, true); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1355 | |
| 1356 | out: |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1357 | had_substream_put(intelhaddata); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1358 | return retval; |
| 1359 | } |
| 1360 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1361 | static inline int had_chk_intrmiss(struct snd_intelhad *intelhaddata, |
| 1362 | enum intel_had_aud_buf_type buf_id) |
| 1363 | { |
| 1364 | int i, intr_count = 0; |
| 1365 | enum intel_had_aud_buf_type buff_done; |
| 1366 | u32 buf_size, buf_addr; |
| 1367 | struct had_stream_data *had_stream; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1368 | |
| 1369 | had_stream = &intelhaddata->stream_data; |
| 1370 | |
| 1371 | buff_done = buf_id; |
| 1372 | |
| 1373 | intr_count = snd_intelhad_read_len(intelhaddata); |
| 1374 | if (intr_count > 1) { |
| 1375 | /* In case of active playback */ |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1376 | dev_err(intelhaddata->dev, |
| 1377 | "Driver detected %d missed buffer done interrupt(s)\n", |
| 1378 | (intr_count - 1)); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1379 | if (intr_count > 3) |
| 1380 | return intr_count; |
| 1381 | |
| 1382 | buf_id += (intr_count - 1); |
| 1383 | /* Reprogram registers*/ |
| 1384 | for (i = buff_done; i < buf_id; i++) { |
| 1385 | int j = i % 4; |
| 1386 | |
| 1387 | buf_size = intelhaddata->buf_info[j].buf_size; |
| 1388 | buf_addr = intelhaddata->buf_info[j].buf_addr; |
| 1389 | had_write_register(intelhaddata, |
| 1390 | AUD_BUF_A_LENGTH + |
| 1391 | (j * HAD_REG_WIDTH), buf_size); |
| 1392 | had_write_register(intelhaddata, |
| 1393 | AUD_BUF_A_ADDR+(j * HAD_REG_WIDTH), |
| 1394 | (buf_addr | BIT(0) | BIT(1))); |
| 1395 | } |
| 1396 | buf_id = buf_id % 4; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1397 | intelhaddata->buff_done = buf_id; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1398 | } |
| 1399 | |
| 1400 | return intr_count; |
| 1401 | } |
| 1402 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1403 | /* called from irq handler */ |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1404 | static int had_process_buffer_done(struct snd_intelhad *intelhaddata) |
| 1405 | { |
| 1406 | u32 len = 1; |
| 1407 | enum intel_had_aud_buf_type buf_id; |
| 1408 | enum intel_had_aud_buf_type buff_done; |
| 1409 | struct pcm_stream_info *stream; |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1410 | struct snd_pcm_substream *substream; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1411 | u32 buf_size; |
| 1412 | struct had_stream_data *had_stream; |
| 1413 | int intr_count; |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1414 | unsigned long flags; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1415 | |
| 1416 | had_stream = &intelhaddata->stream_data; |
| 1417 | stream = &intelhaddata->stream_info; |
| 1418 | intr_count = 1; |
| 1419 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1420 | spin_lock_irqsave(&intelhaddata->had_spinlock, flags); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1421 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1422 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags); |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1423 | dev_dbg(intelhaddata->dev, |
| 1424 | "%s:Device already disconnected\n", __func__); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1425 | return 0; |
| 1426 | } |
| 1427 | buf_id = intelhaddata->curr_buf; |
| 1428 | intelhaddata->buff_done = buf_id; |
| 1429 | buff_done = intelhaddata->buff_done; |
| 1430 | buf_size = intelhaddata->buf_info[buf_id].buf_size; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1431 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1432 | /* Every debug statement has an implication |
| 1433 | * of ~5msec. Thus, avoid having >3 debug statements |
| 1434 | * for each buffer_done handling. |
| 1435 | */ |
| 1436 | |
| 1437 | /* Check for any intr_miss in case of active playback */ |
| 1438 | if (had_stream->stream_type == HAD_RUNNING_STREAM) { |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1439 | intr_count = had_chk_intrmiss(intelhaddata, buf_id); |
| 1440 | if (!intr_count || (intr_count > 3)) { |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1441 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, |
| 1442 | flags); |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1443 | dev_err(intelhaddata->dev, |
| 1444 | "HAD SW state in non-recoverable mode\n"); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1445 | return 0; |
| 1446 | } |
| 1447 | buf_id += (intr_count - 1); |
| 1448 | buf_id = buf_id % 4; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | intelhaddata->buf_info[buf_id].is_valid = true; |
| 1452 | if (intelhaddata->valid_buf_cnt-1 == buf_id) { |
| 1453 | if (had_stream->stream_type >= HAD_RUNNING_STREAM) |
| 1454 | intelhaddata->curr_buf = HAD_BUF_TYPE_A; |
| 1455 | } else |
| 1456 | intelhaddata->curr_buf = buf_id + 1; |
| 1457 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1458 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1459 | |
Takashi Iwai | 79f439e | 2017-01-31 16:46:44 +0100 | [diff] [blame] | 1460 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1461 | dev_dbg(intelhaddata->dev, "HDMI cable plugged-out\n"); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1462 | return 0; |
| 1463 | } |
| 1464 | |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1465 | /* Reprogram the registers with addr and length */ |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1466 | had_write_register(intelhaddata, |
| 1467 | AUD_BUF_A_LENGTH + (buf_id * HAD_REG_WIDTH), |
| 1468 | buf_size); |
| 1469 | had_write_register(intelhaddata, |
| 1470 | AUD_BUF_A_ADDR + (buf_id * HAD_REG_WIDTH), |
| 1471 | intelhaddata->buf_info[buf_id].buf_addr | |
| 1472 | BIT(0) | BIT(1)); |
| 1473 | |
| 1474 | had_read_register(intelhaddata, |
| 1475 | AUD_BUF_A_LENGTH + (buf_id * HAD_REG_WIDTH), |
| 1476 | &len); |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1477 | dev_dbg(intelhaddata->dev, "%s:Enabled buf[%d]\n", __func__, buf_id); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1478 | |
| 1479 | /* In case of actual data, |
| 1480 | * report buffer_done to above ALSA layer |
| 1481 | */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1482 | substream = had_substream_get(intelhaddata); |
| 1483 | if (substream) { |
| 1484 | buf_size = intelhaddata->buf_info[buf_id].buf_size; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1485 | intelhaddata->stream_info.buffer_rendered += |
| 1486 | (intr_count * buf_size); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1487 | snd_pcm_period_elapsed(substream); |
| 1488 | had_substream_put(intelhaddata); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | return 0; |
| 1492 | } |
| 1493 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1494 | /* called from irq handler */ |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1495 | static int had_process_buffer_underrun(struct snd_intelhad *intelhaddata) |
| 1496 | { |
| 1497 | enum intel_had_aud_buf_type buf_id; |
| 1498 | struct pcm_stream_info *stream; |
| 1499 | struct had_stream_data *had_stream; |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1500 | struct snd_pcm_substream *substream; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1501 | enum had_status_stream stream_type; |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1502 | unsigned long flags; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1503 | int drv_status; |
| 1504 | |
| 1505 | had_stream = &intelhaddata->stream_data; |
| 1506 | stream = &intelhaddata->stream_info; |
| 1507 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1508 | spin_lock_irqsave(&intelhaddata->had_spinlock, flags); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1509 | buf_id = intelhaddata->curr_buf; |
| 1510 | stream_type = had_stream->stream_type; |
| 1511 | intelhaddata->buff_done = buf_id; |
| 1512 | drv_status = intelhaddata->drv_status; |
| 1513 | if (stream_type == HAD_RUNNING_STREAM) |
| 1514 | intelhaddata->curr_buf = HAD_BUF_TYPE_A; |
| 1515 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1516 | spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1517 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1518 | dev_dbg(intelhaddata->dev, "Enter:%s buf_id=%d, stream_type=%d\n", |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1519 | __func__, buf_id, stream_type); |
| 1520 | |
| 1521 | snd_intelhad_handle_underrun(intelhaddata); |
| 1522 | |
| 1523 | if (drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1524 | dev_dbg(intelhaddata->dev, |
| 1525 | "%s:Device already disconnected\n", __func__); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1526 | return 0; |
| 1527 | } |
| 1528 | |
| 1529 | if (stream_type == HAD_RUNNING_STREAM) { |
| 1530 | /* Report UNDERRUN error to above layers */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1531 | substream = had_substream_get(intelhaddata); |
| 1532 | if (substream) { |
| 1533 | snd_pcm_stop_xrun(substream); |
| 1534 | had_substream_put(intelhaddata); |
| 1535 | } |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1541 | /* process hot plug, called from wq with mutex locked */ |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1542 | static void had_process_hot_plug(struct snd_intelhad *intelhaddata) |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1543 | { |
| 1544 | enum intel_had_aud_buf_type buf_id; |
| 1545 | struct snd_pcm_substream *substream; |
| 1546 | struct had_stream_data *had_stream; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1547 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1548 | had_stream = &intelhaddata->stream_data; |
| 1549 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1550 | spin_lock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1551 | if (intelhaddata->drv_status == HAD_DRV_CONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1552 | dev_dbg(intelhaddata->dev, "Device already connected\n"); |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1553 | spin_unlock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1554 | return; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1555 | } |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1556 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1557 | buf_id = intelhaddata->curr_buf; |
| 1558 | intelhaddata->buff_done = buf_id; |
| 1559 | intelhaddata->drv_status = HAD_DRV_CONNECTED; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1560 | dev_dbg(intelhaddata->dev, |
| 1561 | "%s @ %d:DEBUG PLUG/UNPLUG : HAD_DRV_CONNECTED\n", |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1562 | __func__, __LINE__); |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1563 | spin_unlock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1564 | |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1565 | dev_dbg(intelhaddata->dev, "Processing HOT_PLUG, buf_id = %d\n", |
| 1566 | buf_id); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1567 | |
| 1568 | /* Safety check */ |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1569 | substream = had_substream_get(intelhaddata); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1570 | if (substream) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1571 | dev_dbg(intelhaddata->dev, |
| 1572 | "Force to stop the active stream by disconnection\n"); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1573 | /* Set runtime->state to hw_params done */ |
| 1574 | snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1575 | had_substream_put(intelhaddata); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1576 | } |
| 1577 | |
| 1578 | had_build_channel_allocation_map(intelhaddata); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1579 | } |
| 1580 | |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1581 | /* process hot unplug, called from wq with mutex locked */ |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1582 | static void had_process_hot_unplug(struct snd_intelhad *intelhaddata) |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1583 | { |
| 1584 | enum intel_had_aud_buf_type buf_id; |
| 1585 | struct had_stream_data *had_stream; |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1586 | struct snd_pcm_substream *substream; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1587 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1588 | had_stream = &intelhaddata->stream_data; |
| 1589 | buf_id = intelhaddata->curr_buf; |
| 1590 | |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1591 | substream = had_substream_get(intelhaddata); |
| 1592 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1593 | spin_lock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1594 | |
| 1595 | if (intelhaddata->drv_status == HAD_DRV_DISCONNECTED) { |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1596 | dev_dbg(intelhaddata->dev, "Device already disconnected\n"); |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1597 | spin_unlock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1598 | goto out; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1599 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1600 | } |
| 1601 | |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1602 | /* Disable Audio */ |
| 1603 | snd_intelhad_enable_audio_int(intelhaddata, false); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1604 | snd_intelhad_enable_audio(substream, intelhaddata, false); |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1605 | |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1606 | intelhaddata->drv_status = HAD_DRV_DISCONNECTED; |
Takashi Iwai | c75b047 | 2017-01-31 15:49:15 +0100 | [diff] [blame] | 1607 | dev_dbg(intelhaddata->dev, |
| 1608 | "%s @ %d:DEBUG PLUG/UNPLUG : HAD_DRV_DISCONNECTED\n", |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1609 | __func__, __LINE__); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1610 | had_stream->stream_type = HAD_INIT; |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1611 | spin_unlock_irq(&intelhaddata->had_spinlock); |
Takashi Iwai | 313d9f2 | 2017-02-02 13:00:12 +0100 | [diff] [blame] | 1612 | |
| 1613 | /* Report to above ALSA layer */ |
| 1614 | if (substream) |
| 1615 | snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP); |
| 1616 | |
| 1617 | out: |
| 1618 | if (substream) |
| 1619 | had_substream_put(intelhaddata); |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1620 | kfree(intelhaddata->chmap->chmap); |
| 1621 | intelhaddata->chmap->chmap = NULL; |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1622 | } |
| 1623 | |
| 1624 | /* PCM operations structure and the calls back for the same */ |
| 1625 | static struct snd_pcm_ops snd_intelhad_playback_ops = { |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1626 | .open = snd_intelhad_open, |
| 1627 | .close = snd_intelhad_close, |
| 1628 | .ioctl = snd_pcm_lib_ioctl, |
| 1629 | .hw_params = snd_intelhad_hw_params, |
| 1630 | .hw_free = snd_intelhad_hw_free, |
| 1631 | .prepare = snd_intelhad_pcm_prepare, |
| 1632 | .trigger = snd_intelhad_pcm_trigger, |
| 1633 | .pointer = snd_intelhad_pcm_pointer, |
| 1634 | .mmap = snd_intelhad_pcm_mmap, |
| 1635 | }; |
| 1636 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1637 | static int had_iec958_info(struct snd_kcontrol *kcontrol, |
| 1638 | struct snd_ctl_elem_info *uinfo) |
| 1639 | { |
| 1640 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 1641 | uinfo->count = 1; |
| 1642 | return 0; |
| 1643 | } |
| 1644 | |
| 1645 | static int had_iec958_get(struct snd_kcontrol *kcontrol, |
| 1646 | struct snd_ctl_elem_value *ucontrol) |
| 1647 | { |
| 1648 | struct snd_intelhad *intelhaddata = snd_kcontrol_chip(kcontrol); |
| 1649 | |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1650 | mutex_lock(&intelhaddata->mutex); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1651 | ucontrol->value.iec958.status[0] = (intelhaddata->aes_bits >> 0) & 0xff; |
| 1652 | ucontrol->value.iec958.status[1] = (intelhaddata->aes_bits >> 8) & 0xff; |
| 1653 | ucontrol->value.iec958.status[2] = |
| 1654 | (intelhaddata->aes_bits >> 16) & 0xff; |
| 1655 | ucontrol->value.iec958.status[3] = |
| 1656 | (intelhaddata->aes_bits >> 24) & 0xff; |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1657 | mutex_unlock(&intelhaddata->mutex); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1658 | return 0; |
| 1659 | } |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1660 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1661 | static int had_iec958_mask_get(struct snd_kcontrol *kcontrol, |
| 1662 | struct snd_ctl_elem_value *ucontrol) |
| 1663 | { |
| 1664 | ucontrol->value.iec958.status[0] = 0xff; |
| 1665 | ucontrol->value.iec958.status[1] = 0xff; |
| 1666 | ucontrol->value.iec958.status[2] = 0xff; |
| 1667 | ucontrol->value.iec958.status[3] = 0xff; |
| 1668 | return 0; |
| 1669 | } |
Takashi Iwai | 372d855 | 2017-01-31 13:57:58 +0100 | [diff] [blame] | 1670 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1671 | static int had_iec958_put(struct snd_kcontrol *kcontrol, |
| 1672 | struct snd_ctl_elem_value *ucontrol) |
| 1673 | { |
| 1674 | unsigned int val; |
| 1675 | struct snd_intelhad *intelhaddata = snd_kcontrol_chip(kcontrol); |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1676 | int changed = 0; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1677 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1678 | val = (ucontrol->value.iec958.status[0] << 0) | |
| 1679 | (ucontrol->value.iec958.status[1] << 8) | |
| 1680 | (ucontrol->value.iec958.status[2] << 16) | |
| 1681 | (ucontrol->value.iec958.status[3] << 24); |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1682 | mutex_lock(&intelhaddata->mutex); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1683 | if (intelhaddata->aes_bits != val) { |
| 1684 | intelhaddata->aes_bits = val; |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1685 | changed = 1; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1686 | } |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1687 | mutex_unlock(&intelhaddata->mutex); |
| 1688 | return changed; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | static struct snd_kcontrol_new had_control_iec958_mask = { |
| 1692 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1693 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
| 1694 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, MASK), |
| 1695 | .info = had_iec958_info, /* shared */ |
| 1696 | .get = had_iec958_mask_get, |
| 1697 | }; |
| 1698 | |
| 1699 | static struct snd_kcontrol_new had_control_iec958 = { |
| 1700 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
| 1701 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
| 1702 | .info = had_iec958_info, |
| 1703 | .get = had_iec958_get, |
| 1704 | .put = had_iec958_put |
| 1705 | }; |
| 1706 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1707 | static irqreturn_t display_pipe_interrupt_handler(int irq, void *dev_id) |
| 1708 | { |
| 1709 | struct snd_intelhad *ctx = dev_id; |
| 1710 | u32 audio_stat, audio_reg; |
| 1711 | |
Takashi Iwai | 4151ee8 | 2017-01-31 18:14:15 +0100 | [diff] [blame] | 1712 | audio_reg = AUD_HDMI_STATUS; |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1713 | mid_hdmi_audio_read(ctx, audio_reg, &audio_stat); |
| 1714 | |
| 1715 | if (audio_stat & HDMI_AUDIO_UNDERRUN) { |
| 1716 | mid_hdmi_audio_write(ctx, audio_reg, HDMI_AUDIO_UNDERRUN); |
| 1717 | had_process_buffer_underrun(ctx); |
| 1718 | } |
| 1719 | |
| 1720 | if (audio_stat & HDMI_AUDIO_BUFFER_DONE) { |
| 1721 | mid_hdmi_audio_write(ctx, audio_reg, HDMI_AUDIO_BUFFER_DONE); |
| 1722 | had_process_buffer_done(ctx); |
| 1723 | } |
| 1724 | |
| 1725 | return IRQ_HANDLED; |
| 1726 | } |
| 1727 | |
| 1728 | static void notify_audio_lpe(struct platform_device *pdev) |
| 1729 | { |
| 1730 | struct snd_intelhad *ctx = platform_get_drvdata(pdev); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1731 | |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1732 | schedule_work(&ctx->hdmi_audio_wq); |
| 1733 | } |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1734 | |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1735 | static void had_audio_wq(struct work_struct *work) |
| 1736 | { |
| 1737 | struct snd_intelhad *ctx = |
| 1738 | container_of(work, struct snd_intelhad, hdmi_audio_wq); |
| 1739 | struct intel_hdmi_lpe_audio_pdata *pdata = ctx->dev->platform_data; |
| 1740 | |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 1741 | pm_runtime_get_sync(ctx->dev); |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1742 | mutex_lock(&ctx->mutex); |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1743 | if (!pdata->hdmi_connected) { |
| 1744 | dev_dbg(ctx->dev, "%s: Event: HAD_NOTIFY_HOT_UNPLUG\n", |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1745 | __func__); |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1746 | had_process_hot_unplug(ctx); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1747 | } else { |
| 1748 | struct intel_hdmi_lpe_audio_eld *eld = &pdata->eld; |
| 1749 | |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1750 | dev_dbg(ctx->dev, "%s: HAD_NOTIFY_ELD : port = %d, tmds = %d\n", |
| 1751 | __func__, eld->port_id, pdata->tmds_clock_speed); |
| 1752 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1753 | switch (eld->pipe_id) { |
| 1754 | case 0: |
| 1755 | ctx->had_config_offset = AUDIO_HDMI_CONFIG_A; |
| 1756 | break; |
| 1757 | case 1: |
| 1758 | ctx->had_config_offset = AUDIO_HDMI_CONFIG_B; |
| 1759 | break; |
| 1760 | case 2: |
| 1761 | ctx->had_config_offset = AUDIO_HDMI_CONFIG_C; |
| 1762 | break; |
| 1763 | default: |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1764 | dev_dbg(ctx->dev, "Invalid pipe %d\n", |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1765 | eld->pipe_id); |
| 1766 | break; |
| 1767 | } |
| 1768 | |
| 1769 | memcpy(&ctx->eld, eld->eld_data, sizeof(ctx->eld)); |
| 1770 | |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1771 | ctx->dp_output = pdata->dp_output; |
| 1772 | ctx->tmds_clock_speed = pdata->tmds_clock_speed; |
| 1773 | ctx->link_rate = pdata->link_rate; |
| 1774 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1775 | had_process_hot_plug(ctx); |
| 1776 | |
Takashi Iwai | 0e9c67d | 2017-02-01 17:53:19 +0100 | [diff] [blame] | 1777 | /* Process mode change if stream is active */ |
| 1778 | if (ctx->stream_data.stream_type == HAD_RUNNING_STREAM) |
| 1779 | hdmi_audio_mode_change(ctx); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1780 | } |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1781 | mutex_unlock(&ctx->mutex); |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 1782 | pm_runtime_put(ctx->dev); |
| 1783 | } |
| 1784 | |
| 1785 | /* |
| 1786 | * PM callbacks |
| 1787 | */ |
| 1788 | |
| 1789 | static int hdmi_lpe_audio_runtime_suspend(struct device *dev) |
| 1790 | { |
| 1791 | struct snd_intelhad *ctx = dev_get_drvdata(dev); |
| 1792 | struct snd_pcm_substream *substream; |
| 1793 | |
| 1794 | substream = had_substream_get(ctx); |
| 1795 | if (substream) { |
| 1796 | snd_pcm_suspend(substream); |
| 1797 | had_substream_put(ctx); |
| 1798 | } |
| 1799 | |
| 1800 | return 0; |
| 1801 | } |
| 1802 | |
| 1803 | static int hdmi_lpe_audio_suspend(struct device *dev) |
| 1804 | { |
| 1805 | struct snd_intelhad *ctx = dev_get_drvdata(dev); |
| 1806 | int err; |
| 1807 | |
| 1808 | err = hdmi_lpe_audio_runtime_suspend(dev); |
| 1809 | if (!err) |
| 1810 | snd_power_change_state(ctx->card, SNDRV_CTL_POWER_D3hot); |
| 1811 | return err; |
| 1812 | } |
| 1813 | |
| 1814 | static int hdmi_lpe_audio_resume(struct device *dev) |
| 1815 | { |
| 1816 | struct snd_intelhad *ctx = dev_get_drvdata(dev); |
| 1817 | |
| 1818 | snd_power_change_state(ctx->card, SNDRV_CTL_POWER_D0); |
| 1819 | return 0; |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1820 | } |
| 1821 | |
| 1822 | /* release resources */ |
| 1823 | static void hdmi_lpe_audio_free(struct snd_card *card) |
| 1824 | { |
| 1825 | struct snd_intelhad *ctx = card->private_data; |
| 1826 | |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1827 | cancel_work_sync(&ctx->hdmi_audio_wq); |
| 1828 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1829 | if (ctx->mmio_start) |
| 1830 | iounmap(ctx->mmio_start); |
| 1831 | if (ctx->irq >= 0) |
| 1832 | free_irq(ctx->irq, ctx); |
| 1833 | } |
| 1834 | |
| 1835 | /* |
| 1836 | * hdmi_lpe_audio_probe - start bridge with i915 |
| 1837 | * |
| 1838 | * This function is called when the i915 driver creates the |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1839 | * hdmi-lpe-audio platform device. |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1840 | */ |
| 1841 | static int hdmi_lpe_audio_probe(struct platform_device *pdev) |
| 1842 | { |
| 1843 | struct snd_card *card; |
| 1844 | struct snd_intelhad *ctx; |
| 1845 | struct snd_pcm *pcm; |
| 1846 | struct intel_hdmi_lpe_audio_pdata *pdata; |
| 1847 | int irq; |
| 1848 | struct resource *res_mmio; |
| 1849 | int ret; |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1850 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1851 | dev_dbg(&pdev->dev, "dma_mask: %p\n", pdev->dev.dma_mask); |
| 1852 | |
| 1853 | pdata = pdev->dev.platform_data; |
| 1854 | if (!pdata) { |
| 1855 | dev_err(&pdev->dev, "%s: quit: pdata not allocated by i915!!\n", __func__); |
| 1856 | return -EINVAL; |
| 1857 | } |
| 1858 | |
| 1859 | /* get resources */ |
| 1860 | irq = platform_get_irq(pdev, 0); |
| 1861 | if (irq < 0) { |
| 1862 | dev_err(&pdev->dev, "Could not get irq resource\n"); |
| 1863 | return -ENODEV; |
| 1864 | } |
| 1865 | |
| 1866 | res_mmio = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1867 | if (!res_mmio) { |
| 1868 | dev_err(&pdev->dev, "Could not get IO_MEM resources\n"); |
| 1869 | return -ENXIO; |
| 1870 | } |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1871 | |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1872 | /* create a card instance with ALSA framework */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1873 | ret = snd_card_new(&pdev->dev, hdmi_card_index, hdmi_card_id, |
| 1874 | THIS_MODULE, sizeof(*ctx), &card); |
| 1875 | if (ret) |
| 1876 | return ret; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1877 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1878 | ctx = card->private_data; |
| 1879 | spin_lock_init(&ctx->had_spinlock); |
Takashi Iwai | 8f8d1d7 | 2017-02-01 17:24:02 +0100 | [diff] [blame] | 1880 | mutex_init(&ctx->mutex); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1881 | ctx->drv_status = HAD_DRV_DISCONNECTED; |
| 1882 | ctx->dev = &pdev->dev; |
| 1883 | ctx->card = card; |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1884 | ctx->aes_bits = SNDRV_PCM_DEFAULT_CON_SPDIF; |
| 1885 | strcpy(card->driver, INTEL_HAD); |
| 1886 | strcpy(card->shortname, INTEL_HAD); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1887 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1888 | ctx->irq = -1; |
| 1889 | ctx->tmds_clock_speed = DIS_SAMPLE_RATE_148_5; |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1890 | INIT_WORK(&ctx->hdmi_audio_wq, had_audio_wq); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1891 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1892 | card->private_free = hdmi_lpe_audio_free; |
| 1893 | |
| 1894 | /* assume pipe A as default */ |
| 1895 | ctx->had_config_offset = AUDIO_HDMI_CONFIG_A; |
| 1896 | |
| 1897 | platform_set_drvdata(pdev, ctx); |
| 1898 | |
| 1899 | dev_dbg(&pdev->dev, "%s: mmio_start = 0x%x, mmio_end = 0x%x\n", |
| 1900 | __func__, (unsigned int)res_mmio->start, |
| 1901 | (unsigned int)res_mmio->end); |
| 1902 | |
| 1903 | ctx->mmio_start = ioremap_nocache(res_mmio->start, |
| 1904 | (size_t)(resource_size(res_mmio))); |
| 1905 | if (!ctx->mmio_start) { |
| 1906 | dev_err(&pdev->dev, "Could not get ioremap\n"); |
| 1907 | ret = -EACCES; |
| 1908 | goto err; |
| 1909 | } |
| 1910 | |
| 1911 | /* setup interrupt handler */ |
| 1912 | ret = request_irq(irq, display_pipe_interrupt_handler, 0, |
| 1913 | pdev->name, ctx); |
| 1914 | if (ret < 0) { |
| 1915 | dev_err(&pdev->dev, "request_irq failed\n"); |
| 1916 | goto err; |
| 1917 | } |
| 1918 | |
| 1919 | ctx->irq = irq; |
| 1920 | |
| 1921 | ret = snd_pcm_new(card, INTEL_HAD, PCM_INDEX, MAX_PB_STREAMS, |
| 1922 | MAX_CAP_STREAMS, &pcm); |
| 1923 | if (ret) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1924 | goto err; |
| 1925 | |
| 1926 | /* setup private data which can be retrieved when required */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1927 | pcm->private_data = ctx; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1928 | pcm->info_flags = 0; |
| 1929 | strncpy(pcm->name, card->shortname, strlen(card->shortname)); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1930 | /* setup the ops for playabck */ |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1931 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, |
| 1932 | &snd_intelhad_playback_ops); |
| 1933 | /* allocate dma pages for ALSA stream operations |
| 1934 | * memory allocated is based on size, not max value |
| 1935 | * thus using same argument for max & size |
| 1936 | */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1937 | snd_pcm_lib_preallocate_pages_for_all(pcm, |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1938 | SNDRV_DMA_TYPE_DEV, NULL, |
| 1939 | HAD_MAX_BUFFER, HAD_MAX_BUFFER); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1940 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1941 | /* IEC958 controls */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1942 | ret = snd_ctl_add(card, snd_ctl_new1(&had_control_iec958_mask, ctx)); |
| 1943 | if (ret < 0) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1944 | goto err; |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1945 | ret = snd_ctl_add(card, snd_ctl_new1(&had_control_iec958, ctx)); |
| 1946 | if (ret < 0) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1947 | goto err; |
| 1948 | |
| 1949 | init_channel_allocations(); |
| 1950 | |
| 1951 | /* Register channel map controls */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1952 | ret = had_register_chmap_ctls(ctx, pcm); |
| 1953 | if (ret < 0) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1954 | goto err; |
| 1955 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1956 | ret = snd_card_register(card); |
| 1957 | if (ret) |
Takashi Iwai | 36ec0d9 | 2017-01-31 08:47:05 +0100 | [diff] [blame] | 1958 | goto err; |
| 1959 | |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1960 | spin_lock_irq(&pdata->lpe_audio_slock); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1961 | pdata->notify_audio_lpe = notify_audio_lpe; |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1962 | pdata->notify_pending = false; |
Takashi Iwai | bcce775 | 2017-02-01 17:18:20 +0100 | [diff] [blame] | 1963 | spin_unlock_irq(&pdata->lpe_audio_slock); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1964 | |
| 1965 | pm_runtime_set_active(&pdev->dev); |
| 1966 | pm_runtime_enable(&pdev->dev); |
| 1967 | |
Takashi Iwai | 99b2ab9 | 2017-01-31 16:26:10 +0100 | [diff] [blame] | 1968 | dev_dbg(&pdev->dev, "%s: handle pending notification\n", __func__); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1969 | schedule_work(&ctx->hdmi_audio_wq); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1970 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 1971 | return 0; |
Takashi Iwai | 5647aec | 2017-01-31 08:14:34 +0100 | [diff] [blame] | 1972 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1973 | err: |
| 1974 | snd_card_free(card); |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1975 | return ret; |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1976 | } |
| 1977 | |
Takashi Iwai | 79dda75 | 2017-01-30 17:23:39 +0100 | [diff] [blame] | 1978 | /* |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1979 | * hdmi_lpe_audio_remove - stop bridge with i915 |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1980 | * |
Takashi Iwai | 2e52f5e | 2017-01-31 17:09:13 +0100 | [diff] [blame] | 1981 | * This function is called when the platform device is destroyed. |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1982 | */ |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1983 | static int hdmi_lpe_audio_remove(struct platform_device *pdev) |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1984 | { |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1985 | struct snd_intelhad *ctx = platform_get_drvdata(pdev); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1986 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1987 | if (ctx->drv_status != HAD_DRV_DISCONNECTED) |
| 1988 | snd_intelhad_enable_audio_int(ctx, false); |
| 1989 | snd_card_free(ctx->card); |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 1990 | return 0; |
| 1991 | } |
| 1992 | |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 1993 | static const struct dev_pm_ops hdmi_lpe_audio_pm = { |
| 1994 | SET_SYSTEM_SLEEP_PM_OPS(hdmi_lpe_audio_suspend, hdmi_lpe_audio_resume) |
| 1995 | SET_RUNTIME_PM_OPS(hdmi_lpe_audio_runtime_suspend, NULL, NULL) |
| 1996 | }; |
| 1997 | |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 1998 | static struct platform_driver hdmi_lpe_audio_driver = { |
| 1999 | .driver = { |
| 2000 | .name = "hdmi-lpe-audio", |
Takashi Iwai | 182cdf2 | 2017-02-02 14:43:39 +0100 | [diff] [blame^] | 2001 | .pm = &hdmi_lpe_audio_pm, |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 2002 | }, |
| 2003 | .probe = hdmi_lpe_audio_probe, |
| 2004 | .remove = hdmi_lpe_audio_remove, |
Takashi Iwai | da86480 | 2017-01-31 13:52:22 +0100 | [diff] [blame] | 2005 | }; |
| 2006 | |
| 2007 | module_platform_driver(hdmi_lpe_audio_driver); |
| 2008 | MODULE_ALIAS("platform:hdmi_lpe_audio"); |
| 2009 | |
Jerome Anand | 5dab11d | 2017-01-25 04:27:52 +0530 | [diff] [blame] | 2010 | MODULE_AUTHOR("Sailaja Bandarupalli <sailaja.bandarupalli@intel.com>"); |
| 2011 | MODULE_AUTHOR("Ramesh Babu K V <ramesh.babu@intel.com>"); |
| 2012 | MODULE_AUTHOR("Vaibhav Agarwal <vaibhav.agarwal@intel.com>"); |
| 2013 | MODULE_AUTHOR("Jerome Anand <jerome.anand@intel.com>"); |
| 2014 | MODULE_DESCRIPTION("Intel HDMI Audio driver"); |
| 2015 | MODULE_LICENSE("GPL v2"); |
| 2016 | MODULE_SUPPORTED_DEVICE("{Intel,Intel_HAD}"); |