blob: c0a080e5d1f4e648c0576b18191ebf0d4f64216a [file] [log] [blame]
Jerome Anand5dab11d2017-01-25 04:27:52 +05301/*
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
Takashi Iwai03c34372017-02-02 16:19:03 +010024#include <linux/types.h>
Jerome Anand5dab11d2017-01-25 04:27:52 +053025#include <linux/platform_device.h>
26#include <linux/io.h>
27#include <linux/slab.h>
28#include <linux/module.h>
Takashi Iwaida864802017-01-31 13:52:22 +010029#include <linux/interrupt.h>
Takashi Iwai03c34372017-02-02 16:19:03 +010030#include <linux/pm_runtime.h>
Takashi Iwai412bbe7d52017-02-02 22:03:22 +010031#include <linux/dma-mapping.h>
Jerome Anand5dab11d2017-01-25 04:27:52 +053032#include <asm/cacheflush.h>
Jerome Anand5dab11d2017-01-25 04:27:52 +053033#include <sound/core.h>
Takashi Iwai03c34372017-02-02 16:19:03 +010034#include <sound/asoundef.h>
35#include <sound/pcm.h>
Jerome Anand5dab11d2017-01-25 04:27:52 +053036#include <sound/pcm_params.h>
37#include <sound/initval.h>
38#include <sound/control.h>
Takashi Iwai03c34372017-02-02 16:19:03 +010039#include <drm/drm_edid.h>
Takashi Iwaida864802017-01-31 13:52:22 +010040#include <drm/intel_lpe_audio.h>
Jerome Anand5dab11d2017-01-25 04:27:52 +053041#include "intel_hdmi_audio.h"
42
Jerome Anand5dab11d2017-01-25 04:27:52 +053043/*standard module options for ALSA. This module supports only one card*/
44static int hdmi_card_index = SNDRV_DEFAULT_IDX1;
45static char *hdmi_card_id = SNDRV_DEFAULT_STR1;
Jerome Anand5dab11d2017-01-25 04:27:52 +053046
47module_param_named(index, hdmi_card_index, int, 0444);
48MODULE_PARM_DESC(index,
49 "Index value for INTEL Intel HDMI Audio controller.");
50module_param_named(id, hdmi_card_id, charp, 0444);
51MODULE_PARM_DESC(id,
52 "ID string for INTEL Intel HDMI Audio controller.");
53
54/*
55 * ELD SA bits in the CEA Speaker Allocation data block
56 */
Takashi Iwai4a5ddb22017-02-01 16:45:38 +010057static const int eld_speaker_allocation_bits[] = {
Jerome Anand5dab11d2017-01-25 04:27:52 +053058 [0] = FL | FR,
59 [1] = LFE,
60 [2] = FC,
61 [3] = RL | RR,
62 [4] = RC,
63 [5] = FLC | FRC,
64 [6] = RLC | RRC,
65 /* the following are not defined in ELD yet */
66 [7] = 0,
67};
68
69/*
70 * This is an ordered list!
71 *
72 * The preceding ones have better chances to be selected by
73 * hdmi_channel_allocation().
74 */
75static struct cea_channel_speaker_allocation channel_allocations[] = {
76/* channel: 7 6 5 4 3 2 1 0 */
77{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
78 /* 2.1 */
79{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
80 /* Dolby Surround */
81{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
82 /* surround40 */
83{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
84 /* surround41 */
85{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
86 /* surround50 */
87{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
88 /* surround51 */
89{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
90 /* 6.1 */
91{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
92 /* surround71 */
93{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
94
95{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
96{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
97{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
98{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
99{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
100{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
101{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
102{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
103{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
104{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
105{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
106{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
107{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
108{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
109{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
110{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
111{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
112{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
113{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
114{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
115{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
116{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
117{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
118};
119
Takashi Iwai4a5ddb22017-02-01 16:45:38 +0100120static const struct channel_map_table map_tables[] = {
Jerome Anand5dab11d2017-01-25 04:27:52 +0530121 { SNDRV_CHMAP_FL, 0x00, FL },
122 { SNDRV_CHMAP_FR, 0x01, FR },
123 { SNDRV_CHMAP_RL, 0x04, RL },
124 { SNDRV_CHMAP_RR, 0x05, RR },
125 { SNDRV_CHMAP_LFE, 0x02, LFE },
126 { SNDRV_CHMAP_FC, 0x03, FC },
127 { SNDRV_CHMAP_RLC, 0x06, RLC },
128 { SNDRV_CHMAP_RRC, 0x07, RRC },
129 {} /* terminator */
130};
131
132/* hardware capability structure */
Takashi Iwaib5562902017-02-04 22:05:33 +0100133static const struct snd_pcm_hardware had_pcm_hardware = {
Jerome Anand5dab11d2017-01-25 04:27:52 +0530134 .info = (SNDRV_PCM_INFO_INTERLEAVED |
Takashi Iwaia9ebdd02017-02-02 21:33:54 +0100135 SNDRV_PCM_INFO_MMAP |
Takashi Iwaie8de9852017-02-07 08:09:12 +0100136 SNDRV_PCM_INFO_MMAP_VALID |
137 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Takashi Iwai3fe2cf72017-02-07 13:53:42 +0100138 .formats = (SNDRV_PCM_FMTBIT_S16_LE |
139 SNDRV_PCM_FMTBIT_S24_LE |
Takashi Iwai85bd8742017-02-07 13:33:17 +0100140 SNDRV_PCM_FMTBIT_S32_LE),
Jerome Anand5dab11d2017-01-25 04:27:52 +0530141 .rates = SNDRV_PCM_RATE_32000 |
142 SNDRV_PCM_RATE_44100 |
143 SNDRV_PCM_RATE_48000 |
144 SNDRV_PCM_RATE_88200 |
145 SNDRV_PCM_RATE_96000 |
146 SNDRV_PCM_RATE_176400 |
147 SNDRV_PCM_RATE_192000,
148 .rate_min = HAD_MIN_RATE,
149 .rate_max = HAD_MAX_RATE,
150 .channels_min = HAD_MIN_CHANNEL,
151 .channels_max = HAD_MAX_CHANNEL,
152 .buffer_bytes_max = HAD_MAX_BUFFER,
153 .period_bytes_min = HAD_MIN_PERIOD_BYTES,
154 .period_bytes_max = HAD_MAX_PERIOD_BYTES,
155 .periods_min = HAD_MIN_PERIODS,
156 .periods_max = HAD_MAX_PERIODS,
157 .fifo_size = HAD_FIFO_SIZE,
158};
159
Takashi Iwai313d9f22017-02-02 13:00:12 +0100160/* Get the active PCM substream;
161 * Call had_substream_put() for unreferecing.
162 * Don't call this inside had_spinlock, as it takes by itself
163 */
164static struct snd_pcm_substream *
165had_substream_get(struct snd_intelhad *intelhaddata)
166{
167 struct snd_pcm_substream *substream;
168 unsigned long flags;
169
170 spin_lock_irqsave(&intelhaddata->had_spinlock, flags);
171 substream = intelhaddata->stream_info.substream;
172 if (substream)
173 intelhaddata->stream_info.substream_refcount++;
174 spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags);
175 return substream;
176}
177
178/* Unref the active PCM substream;
179 * Don't call this inside had_spinlock, as it takes by itself
180 */
181static void had_substream_put(struct snd_intelhad *intelhaddata)
182{
183 unsigned long flags;
184
185 spin_lock_irqsave(&intelhaddata->had_spinlock, flags);
186 intelhaddata->stream_info.substream_refcount--;
187 spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags);
188}
189
Jerome Anand5dab11d2017-01-25 04:27:52 +0530190/* Register access functions */
Takashi Iwai83af57d2017-02-03 08:50:06 +0100191static void had_read_register(struct snd_intelhad *ctx, u32 reg, u32 *val)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530192{
Takashi Iwaida864802017-01-31 13:52:22 +0100193 *val = ioread32(ctx->mmio_start + ctx->had_config_offset + reg);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530194}
195
Takashi Iwai83af57d2017-02-03 08:50:06 +0100196static void had_write_register(struct snd_intelhad *ctx, u32 reg, u32 val)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530197{
Takashi Iwaida864802017-01-31 13:52:22 +0100198 iowrite32(val, ctx->mmio_start + ctx->had_config_offset + reg);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530199}
200
Takashi Iwaida864802017-01-31 13:52:22 +0100201/*
Takashi Iwai313d9f22017-02-02 13:00:12 +0100202 * enable / disable audio configuration
203 *
Takashi Iwai83af57d2017-02-03 08:50:06 +0100204 * The normal read/modify should not directly be used on VLV2 for
Takashi Iwaida864802017-01-31 13:52:22 +0100205 * updating AUD_CONFIG register.
Jerome Anand5dab11d2017-01-25 04:27:52 +0530206 * This is because:
207 * Bit6 of AUD_CONFIG register is writeonly due to a silicon bug on VLV2
208 * HDMI IP. As a result a read-modify of AUD_CONFIG regiter will always
209 * clear bit6. AUD_CONFIG[6:4] represents the "channels" field of the
210 * register. This field should be 1xy binary for configuration with 6 or
211 * more channels. Read-modify of AUD_CONFIG (Eg. for enabling audio)
212 * causes the "channels" field to be updated as 0xy binary resulting in
213 * bad audio. The fix is to always write the AUD_CONFIG[6:4] with
214 * appropriate value when doing read-modify of AUD_CONFIG register.
Jerome Anand5dab11d2017-01-25 04:27:52 +0530215 */
Takashi Iwai40ce4b52017-02-07 16:17:06 +0100216static void had_enable_audio(struct snd_intelhad *intelhaddata,
Takashi Iwaib5562902017-02-04 22:05:33 +0100217 bool enable)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530218{
Takashi Iwai40ce4b52017-02-07 16:17:06 +0100219 /* update the cached value */
220 intelhaddata->aud_config.regx.aud_en = enable;
221 had_write_register(intelhaddata, AUD_CONFIG,
222 intelhaddata->aud_config.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530223}
224
Takashi Iwai075a1d42017-02-07 07:55:27 +0100225/* forcibly ACKs to both BUFFER_DONE and BUFFER_UNDERRUN interrupts */
226static void had_ack_irqs(struct snd_intelhad *ctx)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530227{
Takashi Iwaida864802017-01-31 13:52:22 +0100228 u32 status_reg;
229
Takashi Iwai075a1d42017-02-07 07:55:27 +0100230 had_read_register(ctx, AUD_HDMI_STATUS, &status_reg);
231 status_reg |= HDMI_AUDIO_BUFFER_DONE | HDMI_AUDIO_UNDERRUN;
232 had_write_register(ctx, AUD_HDMI_STATUS, status_reg);
233 had_read_register(ctx, AUD_HDMI_STATUS, &status_reg);
Takashi Iwaida864802017-01-31 13:52:22 +0100234}
235
Takashi Iwaif4566aa2017-02-04 21:39:56 +0100236/* Reset buffer pointers */
237static void had_reset_audio(struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530238{
Takashi Iwai77531be2017-02-07 12:17:23 +0100239 had_write_register(intelhaddata, AUD_HDMI_STATUS,
240 AUD_HDMI_STATUSG_MASK_FUNCRST);
Takashi Iwaif4566aa2017-02-04 21:39:56 +0100241 had_write_register(intelhaddata, AUD_HDMI_STATUS, 0);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530242}
243
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100244/*
Jerome Anand5dab11d2017-01-25 04:27:52 +0530245 * initialize audio channel status registers
246 * This function is called in the prepare callback
247 */
248static int had_prog_status_reg(struct snd_pcm_substream *substream,
249 struct snd_intelhad *intelhaddata)
250{
Takashi Iwai7ceba752017-02-02 15:58:35 +0100251 union aud_cfg cfg_val = {.regval = 0};
252 union aud_ch_status_0 ch_stat0 = {.regval = 0};
253 union aud_ch_status_1 ch_stat1 = {.regval = 0};
Jerome Anand5dab11d2017-01-25 04:27:52 +0530254
Takashi Iwai7ceba752017-02-02 15:58:35 +0100255 ch_stat0.regx.lpcm_id = (intelhaddata->aes_bits &
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100256 IEC958_AES0_NONAUDIO) >> 1;
Takashi Iwai7ceba752017-02-02 15:58:35 +0100257 ch_stat0.regx.clk_acc = (intelhaddata->aes_bits &
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100258 IEC958_AES3_CON_CLOCK) >> 4;
Takashi Iwai7ceba752017-02-02 15:58:35 +0100259 cfg_val.regx.val_bit = ch_stat0.regx.lpcm_id;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530260
261 switch (substream->runtime->rate) {
262 case AUD_SAMPLE_RATE_32:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100263 ch_stat0.regx.samp_freq = CH_STATUS_MAP_32KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530264 break;
265
266 case AUD_SAMPLE_RATE_44_1:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100267 ch_stat0.regx.samp_freq = CH_STATUS_MAP_44KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530268 break;
269 case AUD_SAMPLE_RATE_48:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100270 ch_stat0.regx.samp_freq = CH_STATUS_MAP_48KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530271 break;
272 case AUD_SAMPLE_RATE_88_2:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100273 ch_stat0.regx.samp_freq = CH_STATUS_MAP_88KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530274 break;
275 case AUD_SAMPLE_RATE_96:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100276 ch_stat0.regx.samp_freq = CH_STATUS_MAP_96KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530277 break;
278 case AUD_SAMPLE_RATE_176_4:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100279 ch_stat0.regx.samp_freq = CH_STATUS_MAP_176KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530280 break;
281 case AUD_SAMPLE_RATE_192:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100282 ch_stat0.regx.samp_freq = CH_STATUS_MAP_192KHZ;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530283 break;
284
285 default:
286 /* control should never come here */
287 return -EINVAL;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530288 }
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100289
Takashi Iwai79dda752017-01-30 17:23:39 +0100290 had_write_register(intelhaddata,
Takashi Iwai7ceba752017-02-02 15:58:35 +0100291 AUD_CH_STATUS_0, ch_stat0.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530292
Takashi Iwai85bd8742017-02-07 13:33:17 +0100293 switch (substream->runtime->format) {
Takashi Iwai85bd8742017-02-07 13:33:17 +0100294 case SNDRV_PCM_FORMAT_S16_LE:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100295 ch_stat1.regx.max_wrd_len = MAX_SMPL_WIDTH_20;
296 ch_stat1.regx.wrd_len = SMPL_WIDTH_16BITS;
Takashi Iwai85bd8742017-02-07 13:33:17 +0100297 break;
Takashi Iwai85bd8742017-02-07 13:33:17 +0100298 case SNDRV_PCM_FORMAT_S24_LE:
299 case SNDRV_PCM_FORMAT_S32_LE:
Takashi Iwai7ceba752017-02-02 15:58:35 +0100300 ch_stat1.regx.max_wrd_len = MAX_SMPL_WIDTH_24;
301 ch_stat1.regx.wrd_len = SMPL_WIDTH_24BITS;
Takashi Iwai85bd8742017-02-07 13:33:17 +0100302 break;
303 default:
304 return -EINVAL;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530305 }
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100306
Takashi Iwai79dda752017-01-30 17:23:39 +0100307 had_write_register(intelhaddata,
Takashi Iwai7ceba752017-02-02 15:58:35 +0100308 AUD_CH_STATUS_1, ch_stat1.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530309 return 0;
310}
311
Takashi Iwai76296ef2017-01-30 16:09:11 +0100312/*
Jerome Anand5dab11d2017-01-25 04:27:52 +0530313 * function to initialize audio
314 * registers and buffer confgiuration registers
315 * This function is called in the prepare callback
316 */
Takashi Iwaib5562902017-02-04 22:05:33 +0100317static int had_init_audio_ctrl(struct snd_pcm_substream *substream,
318 struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530319{
Takashi Iwai7ceba752017-02-02 15:58:35 +0100320 union aud_cfg cfg_val = {.regval = 0};
321 union aud_buf_config buf_cfg = {.regval = 0};
Jerome Anand5dab11d2017-01-25 04:27:52 +0530322 u8 channels;
323
324 had_prog_status_reg(substream, intelhaddata);
325
Takashi Iwai7ceba752017-02-02 15:58:35 +0100326 buf_cfg.regx.audio_fifo_watermark = FIFO_THRESHOLD;
327 buf_cfg.regx.dma_fifo_watermark = DMA_FIFO_THRESHOLD;
328 buf_cfg.regx.aud_delay = 0;
329 had_write_register(intelhaddata, AUD_BUF_CONFIG, buf_cfg.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530330
331 channels = substream->runtime->channels;
Takashi Iwai7ceba752017-02-02 15:58:35 +0100332 cfg_val.regx.num_ch = channels - 2;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530333 if (channels <= 2)
Takashi Iwai7ceba752017-02-02 15:58:35 +0100334 cfg_val.regx.layout = LAYOUT0;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530335 else
Takashi Iwai7ceba752017-02-02 15:58:35 +0100336 cfg_val.regx.layout = LAYOUT1;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530337
Takashi Iwai3fe2cf72017-02-07 13:53:42 +0100338 if (substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE)
339 cfg_val.regx.packet_mode = 1;
340
Takashi Iwai85bd8742017-02-07 13:33:17 +0100341 if (substream->runtime->format == SNDRV_PCM_FORMAT_S32_LE)
342 cfg_val.regx.left_align = 1;
343
Takashi Iwai7ceba752017-02-02 15:58:35 +0100344 cfg_val.regx.val_bit = 1;
Takashi Iwai83af57d2017-02-03 08:50:06 +0100345
346 /* fix up the DP bits */
347 if (intelhaddata->dp_output) {
348 cfg_val.regx.dp_modei = 1;
349 cfg_val.regx.set = 1;
350 }
351
Takashi Iwai7ceba752017-02-02 15:58:35 +0100352 had_write_register(intelhaddata, AUD_CONFIG, cfg_val.regval);
Takashi Iwai40ce4b52017-02-07 16:17:06 +0100353 intelhaddata->aud_config = cfg_val;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530354 return 0;
355}
356
Jerome Anand5dab11d2017-01-25 04:27:52 +0530357/*
358 * Compute derived values in channel_allocations[].
359 */
360static void init_channel_allocations(void)
361{
362 int i, j;
363 struct cea_channel_speaker_allocation *p;
364
Jerome Anand5dab11d2017-01-25 04:27:52 +0530365 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
366 p = channel_allocations + i;
367 p->channels = 0;
368 p->spk_mask = 0;
369 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
370 if (p->speakers[j]) {
371 p->channels++;
372 p->spk_mask |= p->speakers[j];
373 }
374 }
375}
376
377/*
378 * The transformation takes two steps:
379 *
380 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
381 * spk_mask => (channel_allocations[]) => ai->CA
382 *
383 * TODO: it could select the wrong CA from multiple candidates.
384 */
Takashi Iwaib5562902017-02-04 22:05:33 +0100385static int had_channel_allocation(struct snd_intelhad *intelhaddata,
386 int channels)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530387{
388 int i;
389 int ca = 0;
390 int spk_mask = 0;
391
392 /*
393 * CA defaults to 0 for basic stereo audio
394 */
395 if (channels <= 2)
396 return 0;
397
398 /*
399 * expand ELD's speaker allocation mask
400 *
401 * ELD tells the speaker mask in a compact(paired) form,
402 * expand ELD's notions to match the ones used by Audio InfoFrame.
403 */
404
405 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
Takashi Iwaidf0435d2017-02-02 15:37:11 +0100406 if (intelhaddata->eld[DRM_ELD_SPEAKER] & (1 << i))
Jerome Anand5dab11d2017-01-25 04:27:52 +0530407 spk_mask |= eld_speaker_allocation_bits[i];
408 }
409
410 /* search for the first working match in the CA table */
411 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
412 if (channels == channel_allocations[i].channels &&
413 (spk_mask & channel_allocations[i].spk_mask) ==
414 channel_allocations[i].spk_mask) {
415 ca = channel_allocations[i].ca_index;
416 break;
417 }
418 }
419
Takashi Iwaic75b0472017-01-31 15:49:15 +0100420 dev_dbg(intelhaddata->dev, "select CA 0x%x for %d\n", ca, channels);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530421
422 return ca;
423}
424
425/* from speaker bit mask to ALSA API channel position */
426static int spk_to_chmap(int spk)
427{
Takashi Iwai4a5ddb22017-02-01 16:45:38 +0100428 const struct channel_map_table *t = map_tables;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530429
430 for (; t->map; t++) {
431 if (t->spk_mask == spk)
432 return t->map;
433 }
434 return 0;
435}
436
Takashi Iwai372d8552017-01-31 13:57:58 +0100437static void had_build_channel_allocation_map(struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530438{
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100439 int i, c;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530440 int spk_mask = 0;
441 struct snd_pcm_chmap_elem *chmap;
442 u8 eld_high, eld_high_mask = 0xF0;
443 u8 high_msb;
444
445 chmap = kzalloc(sizeof(*chmap), GFP_KERNEL);
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100446 if (!chmap) {
Jerome Anand5dab11d2017-01-25 04:27:52 +0530447 intelhaddata->chmap->chmap = NULL;
448 return;
449 }
450
Takashi Iwaidf0435d2017-02-02 15:37:11 +0100451 dev_dbg(intelhaddata->dev, "eld speaker = %x\n",
452 intelhaddata->eld[DRM_ELD_SPEAKER]);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530453
454 /* WA: Fix the max channel supported to 8 */
455
456 /*
457 * Sink may support more than 8 channels, if eld_high has more than
458 * one bit set. SOC supports max 8 channels.
459 * Refer eld_speaker_allocation_bits, for sink speaker allocation
460 */
461
462 /* if 0x2F < eld < 0x4F fall back to 0x2f, else fall back to 0x4F */
Takashi Iwaidf0435d2017-02-02 15:37:11 +0100463 eld_high = intelhaddata->eld[DRM_ELD_SPEAKER] & eld_high_mask;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530464 if ((eld_high & (eld_high-1)) && (eld_high > 0x1F)) {
465 /* eld_high & (eld_high-1): if more than 1 bit set */
466 /* 0x1F: 7 channels */
467 for (i = 1; i < 4; i++) {
468 high_msb = eld_high & (0x80 >> i);
469 if (high_msb) {
Takashi Iwaidf0435d2017-02-02 15:37:11 +0100470 intelhaddata->eld[DRM_ELD_SPEAKER] &=
Jerome Anand5dab11d2017-01-25 04:27:52 +0530471 high_msb | 0xF;
472 break;
473 }
474 }
475 }
476
477 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
Takashi Iwaidf0435d2017-02-02 15:37:11 +0100478 if (intelhaddata->eld[DRM_ELD_SPEAKER] & (1 << i))
Jerome Anand5dab11d2017-01-25 04:27:52 +0530479 spk_mask |= eld_speaker_allocation_bits[i];
480 }
481
482 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
483 if (spk_mask == channel_allocations[i].spk_mask) {
484 for (c = 0; c < channel_allocations[i].channels; c++) {
485 chmap->map[c] = spk_to_chmap(
486 channel_allocations[i].speakers[
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100487 (MAX_SPEAKERS - 1) - c]);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530488 }
489 chmap->channels = channel_allocations[i].channels;
490 intelhaddata->chmap->chmap = chmap;
491 break;
492 }
493 }
494 if (i >= ARRAY_SIZE(channel_allocations)) {
495 intelhaddata->chmap->chmap = NULL;
496 kfree(chmap);
497 }
498}
499
500/*
501 * ALSA API channel-map control callbacks
502 */
503static int had_chmap_ctl_info(struct snd_kcontrol *kcontrol,
504 struct snd_ctl_elem_info *uinfo)
505{
506 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
507 struct snd_intelhad *intelhaddata = info->private_data;
508
Takashi Iwai91b0cb02017-02-02 17:46:49 +0100509 if (!intelhaddata->connected)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530510 return -ENODEV;
511 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
512 uinfo->count = HAD_MAX_CHANNEL;
513 uinfo->value.integer.min = 0;
514 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
515 return 0;
516}
517
518static int had_chmap_ctl_get(struct snd_kcontrol *kcontrol,
519 struct snd_ctl_elem_value *ucontrol)
520{
521 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
522 struct snd_intelhad *intelhaddata = info->private_data;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100523 int i;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530524 const struct snd_pcm_chmap_elem *chmap;
525
Takashi Iwai91b0cb02017-02-02 17:46:49 +0100526 if (!intelhaddata->connected)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530527 return -ENODEV;
Takashi Iwai8f8d1d72017-02-01 17:24:02 +0100528
529 mutex_lock(&intelhaddata->mutex);
530 if (!intelhaddata->chmap->chmap) {
531 mutex_unlock(&intelhaddata->mutex);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530532 return -ENODATA;
Takashi Iwai8f8d1d72017-02-01 17:24:02 +0100533 }
534
Jerome Anand5dab11d2017-01-25 04:27:52 +0530535 chmap = intelhaddata->chmap->chmap;
Takashi Iwaic75b0472017-01-31 15:49:15 +0100536 for (i = 0; i < chmap->channels; i++)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530537 ucontrol->value.integer.value[i] = chmap->map[i];
Takashi Iwai8f8d1d72017-02-01 17:24:02 +0100538 mutex_unlock(&intelhaddata->mutex);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530539
540 return 0;
541}
542
543static int had_register_chmap_ctls(struct snd_intelhad *intelhaddata,
544 struct snd_pcm *pcm)
545{
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100546 int err;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530547
548 err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
549 NULL, 0, (unsigned long)intelhaddata,
550 &intelhaddata->chmap);
551 if (err < 0)
552 return err;
553
554 intelhaddata->chmap->private_data = intelhaddata;
Takashi Iwaie9d65ab2017-01-31 16:11:27 +0100555 intelhaddata->chmap->kctl->info = had_chmap_ctl_info;
556 intelhaddata->chmap->kctl->get = had_chmap_ctl_get;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530557 intelhaddata->chmap->chmap = NULL;
558 return 0;
559}
560
Takashi Iwai76296ef2017-01-30 16:09:11 +0100561/*
Takashi Iwai44684f62017-02-02 17:27:40 +0100562 * Initialize Data Island Packets registers
Jerome Anand5dab11d2017-01-25 04:27:52 +0530563 * This function is called in the prepare callback
564 */
Takashi Iwaib5562902017-02-04 22:05:33 +0100565static void had_prog_dip(struct snd_pcm_substream *substream,
566 struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530567{
568 int i;
Takashi Iwai7ceba752017-02-02 15:58:35 +0100569 union aud_ctrl_st ctrl_state = {.regval = 0};
570 union aud_info_frame2 frame2 = {.regval = 0};
571 union aud_info_frame3 frame3 = {.regval = 0};
Jerome Anand5dab11d2017-01-25 04:27:52 +0530572 u8 checksum = 0;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600573 u32 info_frame;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530574 int channels;
Takashi Iwai36ed3462017-02-02 17:06:38 +0100575 int ca;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530576
577 channels = substream->runtime->channels;
578
Takashi Iwai7ceba752017-02-02 15:58:35 +0100579 had_write_register(intelhaddata, AUD_CNTL_ST, ctrl_state.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530580
Takashi Iwaib5562902017-02-04 22:05:33 +0100581 ca = had_channel_allocation(intelhaddata, channels);
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600582 if (intelhaddata->dp_output) {
583 info_frame = DP_INFO_FRAME_WORD1;
Takashi Iwai36ed3462017-02-02 17:06:38 +0100584 frame2.regval = (substream->runtime->channels - 1) | (ca << 24);
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600585 } else {
586 info_frame = HDMI_INFO_FRAME_WORD1;
Takashi Iwai7ceba752017-02-02 15:58:35 +0100587 frame2.regx.chnl_cnt = substream->runtime->channels - 1;
Takashi Iwai36ed3462017-02-02 17:06:38 +0100588 frame3.regx.chnl_alloc = ca;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530589
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100590 /* Calculte the byte wide checksum for all valid DIP words */
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600591 for (i = 0; i < BYTES_PER_WORD; i++)
Takashi Iwai7ceba752017-02-02 15:58:35 +0100592 checksum += (info_frame >> (i * 8)) & 0xff;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600593 for (i = 0; i < BYTES_PER_WORD; i++)
Takashi Iwai7ceba752017-02-02 15:58:35 +0100594 checksum += (frame2.regval >> (i * 8)) & 0xff;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600595 for (i = 0; i < BYTES_PER_WORD; i++)
Takashi Iwai7ceba752017-02-02 15:58:35 +0100596 checksum += (frame3.regval >> (i * 8)) & 0xff;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530597
Takashi Iwai7ceba752017-02-02 15:58:35 +0100598 frame2.regx.chksum = -(checksum);
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600599 }
Jerome Anand5dab11d2017-01-25 04:27:52 +0530600
Takashi Iwai4151ee82017-01-31 18:14:15 +0100601 had_write_register(intelhaddata, AUD_HDMIW_INFOFR, info_frame);
Takashi Iwai7ceba752017-02-02 15:58:35 +0100602 had_write_register(intelhaddata, AUD_HDMIW_INFOFR, frame2.regval);
603 had_write_register(intelhaddata, AUD_HDMIW_INFOFR, frame3.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530604
605 /* program remaining DIP words with zero */
606 for (i = 0; i < HAD_MAX_DIP_WORDS-VALID_DIP_WORDS; i++)
Takashi Iwai4151ee82017-01-31 18:14:15 +0100607 had_write_register(intelhaddata, AUD_HDMIW_INFOFR, 0x0);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530608
Takashi Iwai7ceba752017-02-02 15:58:35 +0100609 ctrl_state.regx.dip_freq = 1;
610 ctrl_state.regx.dip_en_sta = 1;
611 had_write_register(intelhaddata, AUD_CNTL_ST, ctrl_state.regval);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530612}
613
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600614static int had_calculate_maud_value(u32 aud_samp_freq, u32 link_rate)
615{
616 u32 maud_val;
617
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100618 /* Select maud according to DP 1.2 spec */
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600619 if (link_rate == DP_2_7_GHZ) {
620 switch (aud_samp_freq) {
621 case AUD_SAMPLE_RATE_32:
622 maud_val = AUD_SAMPLE_RATE_32_DP_2_7_MAUD_VAL;
623 break;
624
625 case AUD_SAMPLE_RATE_44_1:
626 maud_val = AUD_SAMPLE_RATE_44_1_DP_2_7_MAUD_VAL;
627 break;
628
629 case AUD_SAMPLE_RATE_48:
630 maud_val = AUD_SAMPLE_RATE_48_DP_2_7_MAUD_VAL;
631 break;
632
633 case AUD_SAMPLE_RATE_88_2:
634 maud_val = AUD_SAMPLE_RATE_88_2_DP_2_7_MAUD_VAL;
635 break;
636
637 case AUD_SAMPLE_RATE_96:
638 maud_val = AUD_SAMPLE_RATE_96_DP_2_7_MAUD_VAL;
639 break;
640
641 case AUD_SAMPLE_RATE_176_4:
642 maud_val = AUD_SAMPLE_RATE_176_4_DP_2_7_MAUD_VAL;
643 break;
644
645 case HAD_MAX_RATE:
646 maud_val = HAD_MAX_RATE_DP_2_7_MAUD_VAL;
647 break;
648
649 default:
650 maud_val = -EINVAL;
651 break;
652 }
653 } else if (link_rate == DP_1_62_GHZ) {
654 switch (aud_samp_freq) {
655 case AUD_SAMPLE_RATE_32:
656 maud_val = AUD_SAMPLE_RATE_32_DP_1_62_MAUD_VAL;
657 break;
658
659 case AUD_SAMPLE_RATE_44_1:
660 maud_val = AUD_SAMPLE_RATE_44_1_DP_1_62_MAUD_VAL;
661 break;
662
663 case AUD_SAMPLE_RATE_48:
664 maud_val = AUD_SAMPLE_RATE_48_DP_1_62_MAUD_VAL;
665 break;
666
667 case AUD_SAMPLE_RATE_88_2:
668 maud_val = AUD_SAMPLE_RATE_88_2_DP_1_62_MAUD_VAL;
669 break;
670
671 case AUD_SAMPLE_RATE_96:
672 maud_val = AUD_SAMPLE_RATE_96_DP_1_62_MAUD_VAL;
673 break;
674
675 case AUD_SAMPLE_RATE_176_4:
676 maud_val = AUD_SAMPLE_RATE_176_4_DP_1_62_MAUD_VAL;
677 break;
678
679 case HAD_MAX_RATE:
680 maud_val = HAD_MAX_RATE_DP_1_62_MAUD_VAL;
681 break;
682
683 default:
684 maud_val = -EINVAL;
685 break;
686 }
687 } else
688 maud_val = -EINVAL;
689
690 return maud_val;
691}
692
Takashi Iwai76296ef2017-01-30 16:09:11 +0100693/*
Takashi Iwai44684f62017-02-02 17:27:40 +0100694 * Program HDMI audio CTS value
Jerome Anand5dab11d2017-01-25 04:27:52 +0530695 *
696 * @aud_samp_freq: sampling frequency of audio data
697 * @tmds: sampling frequency of the display data
Takashi Iwaib5562902017-02-04 22:05:33 +0100698 * @link_rate: DP link rate
Jerome Anand5dab11d2017-01-25 04:27:52 +0530699 * @n_param: N value, depends on aud_samp_freq
Takashi Iwaib5562902017-02-04 22:05:33 +0100700 * @intelhaddata: substream private data
Jerome Anand5dab11d2017-01-25 04:27:52 +0530701 *
702 * Program CTS register based on the audio and display sampling frequency
703 */
Takashi Iwaib5562902017-02-04 22:05:33 +0100704static void had_prog_cts(u32 aud_samp_freq, u32 tmds, u32 link_rate,
705 u32 n_param, struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530706{
707 u32 cts_val;
708 u64 dividend, divisor;
709
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600710 if (intelhaddata->dp_output) {
711 /* Substitute cts_val with Maud according to DP 1.2 spec*/
712 cts_val = had_calculate_maud_value(aud_samp_freq, link_rate);
713 } else {
714 /* Calculate CTS according to HDMI 1.3a spec*/
715 dividend = (u64)tmds * n_param*1000;
716 divisor = 128 * aud_samp_freq;
717 cts_val = div64_u64(dividend, divisor);
718 }
Takashi Iwaic75b0472017-01-31 15:49:15 +0100719 dev_dbg(intelhaddata->dev, "TMDS value=%d, N value=%d, CTS Value=%d\n",
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600720 tmds, n_param, cts_val);
Takashi Iwai79dda752017-01-30 17:23:39 +0100721 had_write_register(intelhaddata, AUD_HDMI_CTS, (BIT(24) | cts_val));
Jerome Anand5dab11d2017-01-25 04:27:52 +0530722}
723
724static int had_calculate_n_value(u32 aud_samp_freq)
725{
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100726 int n_val;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530727
728 /* Select N according to HDMI 1.3a spec*/
729 switch (aud_samp_freq) {
730 case AUD_SAMPLE_RATE_32:
731 n_val = 4096;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100732 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530733
734 case AUD_SAMPLE_RATE_44_1:
735 n_val = 6272;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100736 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530737
738 case AUD_SAMPLE_RATE_48:
739 n_val = 6144;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100740 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530741
742 case AUD_SAMPLE_RATE_88_2:
743 n_val = 12544;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100744 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530745
746 case AUD_SAMPLE_RATE_96:
747 n_val = 12288;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100748 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530749
750 case AUD_SAMPLE_RATE_176_4:
751 n_val = 25088;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100752 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530753
754 case HAD_MAX_RATE:
755 n_val = 24576;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100756 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530757
758 default:
759 n_val = -EINVAL;
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100760 break;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530761 }
762 return n_val;
763}
764
Takashi Iwai76296ef2017-01-30 16:09:11 +0100765/*
Takashi Iwai44684f62017-02-02 17:27:40 +0100766 * Program HDMI audio N value
Jerome Anand5dab11d2017-01-25 04:27:52 +0530767 *
768 * @aud_samp_freq: sampling frequency of audio data
769 * @n_param: N value, depends on aud_samp_freq
Takashi Iwaib5562902017-02-04 22:05:33 +0100770 * @intelhaddata: substream private data
Jerome Anand5dab11d2017-01-25 04:27:52 +0530771 *
772 * This function is called in the prepare callback.
773 * It programs based on the audio and display sampling frequency
774 */
Takashi Iwaib5562902017-02-04 22:05:33 +0100775static int had_prog_n(u32 aud_samp_freq, u32 *n_param,
776 struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530777{
Takashi Iwai2e52f5e2017-01-31 17:09:13 +0100778 int n_val;
Jerome Anand5dab11d2017-01-25 04:27:52 +0530779
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -0600780 if (intelhaddata->dp_output) {
781 /*
782 * According to DP specs, Maud and Naud values hold
783 * a relationship, which is stated as:
784 * Maud/Naud = 512 * fs / f_LS_Clk
785 * where, fs is the sampling frequency of the audio stream
786 * and Naud is 32768 for Async clock.
787 */
788
789 n_val = DP_NAUD_VAL;
790 } else
791 n_val = had_calculate_n_value(aud_samp_freq);
Jerome Anand5dab11d2017-01-25 04:27:52 +0530792
793 if (n_val < 0)
794 return n_val;
795
Takashi Iwai79dda752017-01-30 17:23:39 +0100796 had_write_register(intelhaddata, AUD_N_ENABLE, (BIT(24) | n_val));
Jerome Anand5dab11d2017-01-25 04:27:52 +0530797 *n_param = n_val;
798 return 0;
799}
800
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100801/*
802 * PCM ring buffer handling
803 *
804 * The hardware provides a ring buffer with the fixed 4 buffer descriptors
805 * (BDs). The driver maps these 4 BDs onto the PCM ring buffer. The mapping
806 * moves at each period elapsed. The below illustrates how it works:
807 *
808 * At time=0
809 * PCM | 0 | 1 | 2 | 3 | 4 | 5 | .... |n-1|
810 * BD | 0 | 1 | 2 | 3 |
811 *
812 * At time=1 (period elapsed)
813 * PCM | 0 | 1 | 2 | 3 | 4 | 5 | .... |n-1|
814 * BD | 1 | 2 | 3 | 0 |
815 *
816 * At time=2 (second period elapsed)
817 * PCM | 0 | 1 | 2 | 3 | 4 | 5 | .... |n-1|
818 * BD | 2 | 3 | 0 | 1 |
819 *
820 * The bd_head field points to the index of the BD to be read. It's also the
821 * position to be filled at next. The pcm_head and the pcm_filled fields
822 * point to the indices of the current position and of the next position to
823 * be filled, respectively. For PCM buffer there are both _head and _filled
824 * because they may be difference when nperiods > 4. For example, in the
825 * example above at t=1, bd_head=1 and pcm_head=1 while pcm_filled=5:
826 *
827 * pcm_head (=1) --v v-- pcm_filled (=5)
828 * PCM | 0 | 1 | 2 | 3 | 4 | 5 | .... |n-1|
829 * BD | 1 | 2 | 3 | 0 |
830 * bd_head (=1) --^ ^-- next to fill (= bd_head)
831 *
832 * For nperiods < 4, the remaining BDs out of 4 are marked as invalid, so that
833 * the hardware skips those BDs in the loop.
Takashi Iwai8d48c012017-02-07 08:05:46 +0100834 *
835 * An exceptional setup is the case with nperiods=1. Since we have to update
836 * BDs after finishing one BD processing, we'd need at least two BDs, where
837 * both BDs point to the same content, the same address, the same size of the
838 * whole PCM buffer.
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100839 */
840
841#define AUD_BUF_ADDR(x) (AUD_BUF_A_ADDR + (x) * HAD_REG_WIDTH)
842#define AUD_BUF_LEN(x) (AUD_BUF_A_LENGTH + (x) * HAD_REG_WIDTH)
843
844/* Set up a buffer descriptor at the "filled" position */
845static void had_prog_bd(struct snd_pcm_substream *substream,
846 struct snd_intelhad *intelhaddata)
847{
848 int idx = intelhaddata->bd_head;
849 int ofs = intelhaddata->pcmbuf_filled * intelhaddata->period_bytes;
850 u32 addr = substream->runtime->dma_addr + ofs;
851
Takashi Iwaie8de9852017-02-07 08:09:12 +0100852 addr |= AUD_BUF_VALID;
853 if (!substream->runtime->no_period_wakeup)
854 addr |= AUD_BUF_INTR_EN;
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100855 had_write_register(intelhaddata, AUD_BUF_ADDR(idx), addr);
856 had_write_register(intelhaddata, AUD_BUF_LEN(idx),
857 intelhaddata->period_bytes);
858
859 /* advance the indices to the next */
860 intelhaddata->bd_head++;
861 intelhaddata->bd_head %= intelhaddata->num_bds;
862 intelhaddata->pcmbuf_filled++;
863 intelhaddata->pcmbuf_filled %= substream->runtime->periods;
864}
865
866/* invalidate a buffer descriptor with the given index */
867static void had_invalidate_bd(struct snd_intelhad *intelhaddata,
868 int idx)
869{
870 had_write_register(intelhaddata, AUD_BUF_ADDR(idx), 0);
871 had_write_register(intelhaddata, AUD_BUF_LEN(idx), 0);
872}
873
874/* Initial programming of ring buffer */
875static void had_init_ringbuf(struct snd_pcm_substream *substream,
876 struct snd_intelhad *intelhaddata)
877{
878 struct snd_pcm_runtime *runtime = substream->runtime;
879 int i, num_periods;
880
881 num_periods = runtime->periods;
882 intelhaddata->num_bds = min(num_periods, HAD_NUM_OF_RING_BUFS);
Takashi Iwai8d48c012017-02-07 08:05:46 +0100883 /* set the minimum 2 BDs for num_periods=1 */
884 intelhaddata->num_bds = max(intelhaddata->num_bds, 2U);
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100885 intelhaddata->period_bytes =
886 frames_to_bytes(runtime, runtime->period_size);
887 WARN_ON(intelhaddata->period_bytes & 0x3f);
888
889 intelhaddata->bd_head = 0;
890 intelhaddata->pcmbuf_head = 0;
891 intelhaddata->pcmbuf_filled = 0;
892
893 for (i = 0; i < HAD_NUM_OF_RING_BUFS; i++) {
Takashi Iwai8d48c012017-02-07 08:05:46 +0100894 if (i < intelhaddata->num_bds)
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100895 had_prog_bd(substream, intelhaddata);
896 else /* invalidate the rest */
897 had_invalidate_bd(intelhaddata, i);
898 }
899
900 intelhaddata->bd_head = 0; /* reset at head again before starting */
901}
902
903/* process a bd, advance to the next */
904static void had_advance_ringbuf(struct snd_pcm_substream *substream,
905 struct snd_intelhad *intelhaddata)
906{
907 int num_periods = substream->runtime->periods;
908
909 /* reprogram the next buffer */
910 had_prog_bd(substream, intelhaddata);
911
912 /* proceed to next */
913 intelhaddata->pcmbuf_head++;
914 intelhaddata->pcmbuf_head %= num_periods;
915}
916
917/* process the current BD(s);
918 * returns the current PCM buffer byte position, or -EPIPE for underrun.
919 */
920static int had_process_ringbuf(struct snd_pcm_substream *substream,
921 struct snd_intelhad *intelhaddata)
922{
923 int len, processed;
924 unsigned long flags;
925
926 processed = 0;
927 spin_lock_irqsave(&intelhaddata->had_spinlock, flags);
928 for (;;) {
929 /* get the remaining bytes on the buffer */
930 had_read_register(intelhaddata,
931 AUD_BUF_LEN(intelhaddata->bd_head),
932 &len);
933 if (len < 0 || len > intelhaddata->period_bytes) {
934 dev_dbg(intelhaddata->dev, "Invalid buf length %d\n",
935 len);
936 len = -EPIPE;
937 goto out;
938 }
939
940 if (len > 0) /* OK, this is the current buffer */
941 break;
942
943 /* len=0 => already empty, check the next buffer */
944 if (++processed >= intelhaddata->num_bds) {
945 len = -EPIPE; /* all empty? - report underrun */
946 goto out;
947 }
948 had_advance_ringbuf(substream, intelhaddata);
949 }
950
951 len = intelhaddata->period_bytes - len;
952 len += intelhaddata->period_bytes * intelhaddata->pcmbuf_head;
953 out:
954 spin_unlock_irqrestore(&intelhaddata->had_spinlock, flags);
955 return len;
956}
957
958/* called from irq handler */
959static void had_process_buffer_done(struct snd_intelhad *intelhaddata)
960{
961 struct snd_pcm_substream *substream;
962
963 if (!intelhaddata->connected)
964 return; /* disconnected? - bail out */
965
966 substream = had_substream_get(intelhaddata);
967 if (!substream)
968 return; /* no stream? - bail out */
969
970 /* process or stop the stream */
971 if (had_process_ringbuf(substream, intelhaddata) < 0)
972 snd_pcm_stop_xrun(substream);
973 else
974 snd_pcm_period_elapsed(substream);
975
976 had_substream_put(intelhaddata);
977}
978
Takashi Iwai03c34372017-02-02 16:19:03 +0100979#define MAX_CNT 0xFF
980
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100981/*
982 * The interrupt status 'sticky' bits might not be cleared by
983 * setting '1' to that bit once...
984 */
985static void wait_clear_underrun_bit(struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +0530986{
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100987 int i;
988 u32 val;
989
990 for (i = 0; i < MAX_CNT; i++) {
991 /* clear bit30, 31 AUD_HDMI_STATUS */
992 had_read_register(intelhaddata, AUD_HDMI_STATUS, &val);
Takashi Iwai77531be2017-02-07 12:17:23 +0100993 if (!(val & AUD_HDMI_STATUS_MASK_UNDERRUN))
Takashi Iwaie1b239f32017-02-03 00:01:18 +0100994 return;
995 had_write_register(intelhaddata, AUD_HDMI_STATUS, val);
996 }
997 dev_err(intelhaddata->dev, "Unable to clear UNDERRUN bits\n");
998}
999
1000/* called from irq handler */
1001static void had_process_buffer_underrun(struct snd_intelhad *intelhaddata)
1002{
1003 struct snd_pcm_substream *substream;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301004
1005 /* Handle Underrun interrupt within Audio Unit */
Takashi Iwai79dda752017-01-30 17:23:39 +01001006 had_write_register(intelhaddata, AUD_CONFIG, 0);
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001007 intelhaddata->aud_config.regval = 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301008 /* Reset buffer pointers */
Takashi Iwaif4566aa2017-02-04 21:39:56 +01001009 had_reset_audio(intelhaddata);
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001010
1011 wait_clear_underrun_bit(intelhaddata);
1012
1013 if (!intelhaddata->connected)
1014 return; /* disconnected? - bail out */
1015
1016 /* Report UNDERRUN error to above layers */
1017 substream = had_substream_get(intelhaddata);
1018 if (substream) {
1019 snd_pcm_stop_xrun(substream);
1020 had_substream_put(intelhaddata);
1021 }
Jerome Anand5dab11d2017-01-25 04:27:52 +05301022}
1023
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001024/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001025 * ALSA PCM open callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301026 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001027static int had_pcm_open(struct snd_pcm_substream *substream)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301028{
1029 struct snd_intelhad *intelhaddata;
1030 struct snd_pcm_runtime *runtime;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301031 int retval;
1032
Jerome Anand5dab11d2017-01-25 04:27:52 +05301033 intelhaddata = snd_pcm_substream_chip(substream);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301034 runtime = substream->runtime;
1035
Takashi Iwai182cdf22017-02-02 14:43:39 +01001036 pm_runtime_get_sync(intelhaddata->dev);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301037
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001038 if (!intelhaddata->connected) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001039 dev_dbg(intelhaddata->dev, "%s: HDMI cable plugged-out\n",
1040 __func__);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301041 retval = -ENODEV;
Takashi Iwaifa5dfe62017-02-01 22:03:26 +01001042 goto error;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301043 }
1044
1045 /* set the runtime hw parameter with local snd_pcm_hardware struct */
Takashi Iwaib5562902017-02-04 22:05:33 +01001046 runtime->hw = had_pcm_hardware;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301047
Jerome Anand5dab11d2017-01-25 04:27:52 +05301048 retval = snd_pcm_hw_constraint_integer(runtime,
1049 SNDRV_PCM_HW_PARAM_PERIODS);
1050 if (retval < 0)
Takashi Iwaifa5dfe62017-02-01 22:03:26 +01001051 goto error;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301052
1053 /* Make sure, that the period size is always aligned
1054 * 64byte boundary
1055 */
1056 retval = snd_pcm_hw_constraint_step(substream->runtime, 0,
1057 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 64);
Takashi Iwai73997b02017-02-02 17:38:50 +01001058 if (retval < 0)
Takashi Iwaifa5dfe62017-02-01 22:03:26 +01001059 goto error;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301060
Takashi Iwai85bd8742017-02-07 13:33:17 +01001061 retval = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1062 if (retval < 0)
1063 goto error;
1064
Takashi Iwai73997b02017-02-02 17:38:50 +01001065 /* expose PCM substream */
Takashi Iwai313d9f22017-02-02 13:00:12 +01001066 spin_lock_irq(&intelhaddata->had_spinlock);
1067 intelhaddata->stream_info.substream = substream;
1068 intelhaddata->stream_info.substream_refcount++;
1069 spin_unlock_irq(&intelhaddata->had_spinlock);
1070
Jerome Anand5dab11d2017-01-25 04:27:52 +05301071 return retval;
Takashi Iwaifa5dfe62017-02-01 22:03:26 +01001072 error:
Jerome Anand5dab11d2017-01-25 04:27:52 +05301073 pm_runtime_put(intelhaddata->dev);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301074 return retval;
1075}
1076
Takashi Iwaidf76df12017-01-31 16:04:10 +01001077/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001078 * ALSA PCM close callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301079 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001080static int had_pcm_close(struct snd_pcm_substream *substream)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301081{
1082 struct snd_intelhad *intelhaddata;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301083
Jerome Anand5dab11d2017-01-25 04:27:52 +05301084 intelhaddata = snd_pcm_substream_chip(substream);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301085
Takashi Iwai73997b02017-02-02 17:38:50 +01001086 /* unreference and sync with the pending PCM accesses */
Takashi Iwai313d9f22017-02-02 13:00:12 +01001087 spin_lock_irq(&intelhaddata->had_spinlock);
1088 intelhaddata->stream_info.substream = NULL;
1089 intelhaddata->stream_info.substream_refcount--;
1090 while (intelhaddata->stream_info.substream_refcount > 0) {
1091 spin_unlock_irq(&intelhaddata->had_spinlock);
1092 cpu_relax();
1093 spin_lock_irq(&intelhaddata->had_spinlock);
1094 }
1095 spin_unlock_irq(&intelhaddata->had_spinlock);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301096
Jerome Anand5dab11d2017-01-25 04:27:52 +05301097 pm_runtime_put(intelhaddata->dev);
1098 return 0;
1099}
1100
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001101/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001102 * ALSA PCM hw_params callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301103 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001104static int had_pcm_hw_params(struct snd_pcm_substream *substream,
1105 struct snd_pcm_hw_params *hw_params)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301106{
Takashi Iwaic75b0472017-01-31 15:49:15 +01001107 struct snd_intelhad *intelhaddata;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301108 unsigned long addr;
1109 int pages, buf_size, retval;
1110
Takashi Iwaic75b0472017-01-31 15:49:15 +01001111 intelhaddata = snd_pcm_substream_chip(substream);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301112 buf_size = params_buffer_bytes(hw_params);
1113 retval = snd_pcm_lib_malloc_pages(substream, buf_size);
1114 if (retval < 0)
1115 return retval;
Takashi Iwaic75b0472017-01-31 15:49:15 +01001116 dev_dbg(intelhaddata->dev, "%s:allocated memory = %d\n",
1117 __func__, buf_size);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301118 /* mark the pages as uncached region */
1119 addr = (unsigned long) substream->runtime->dma_area;
1120 pages = (substream->runtime->dma_bytes + PAGE_SIZE - 1) / PAGE_SIZE;
1121 retval = set_memory_uc(addr, pages);
1122 if (retval) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001123 dev_err(intelhaddata->dev, "set_memory_uc failed.Error:%d\n",
1124 retval);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301125 return retval;
1126 }
1127 memset(substream->runtime->dma_area, 0, buf_size);
1128
1129 return retval;
1130}
1131
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001132/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001133 * ALSA PCM hw_free callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301134 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001135static int had_pcm_hw_free(struct snd_pcm_substream *substream)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301136{
1137 unsigned long addr;
1138 u32 pages;
1139
Jerome Anand5dab11d2017-01-25 04:27:52 +05301140 /* mark back the pages as cached/writeback region before the free */
1141 if (substream->runtime->dma_area != NULL) {
1142 addr = (unsigned long) substream->runtime->dma_area;
1143 pages = (substream->runtime->dma_bytes + PAGE_SIZE - 1) /
1144 PAGE_SIZE;
1145 set_memory_wb(addr, pages);
1146 return snd_pcm_lib_free_pages(substream);
1147 }
1148 return 0;
1149}
1150
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001151/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001152 * ALSA PCM trigger callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301153 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001154static int had_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301155{
Takashi Iwaida864802017-01-31 13:52:22 +01001156 int retval = 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301157 struct snd_intelhad *intelhaddata;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301158
Jerome Anand5dab11d2017-01-25 04:27:52 +05301159 intelhaddata = snd_pcm_substream_chip(substream);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301160
1161 switch (cmd) {
1162 case SNDRV_PCM_TRIGGER_START:
Takashi Iwai182cdf22017-02-02 14:43:39 +01001163 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1164 case SNDRV_PCM_TRIGGER_RESUME:
Jerome Anand5dab11d2017-01-25 04:27:52 +05301165 /* Disable local INTRs till register prgmng is done */
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001166 if (!intelhaddata->connected) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001167 dev_dbg(intelhaddata->dev,
1168 "_START: HDMI cable plugged-out\n");
Jerome Anand5dab11d2017-01-25 04:27:52 +05301169 retval = -ENODEV;
1170 break;
1171 }
Jerome Anand5dab11d2017-01-25 04:27:52 +05301172
Takashi Iwaif69bd102017-02-02 14:57:22 +01001173 intelhaddata->stream_info.running = true;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301174
1175 /* Enable Audio */
Takashi Iwai075a1d42017-02-07 07:55:27 +01001176 had_ack_irqs(intelhaddata); /* FIXME: do we need this? */
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001177 had_enable_audio(intelhaddata, true);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301178 break;
1179
1180 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai182cdf22017-02-02 14:43:39 +01001181 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1182 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwaibcce7752017-02-01 17:18:20 +01001183 spin_lock(&intelhaddata->had_spinlock);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301184
Takashi Iwaic75b0472017-01-31 15:49:15 +01001185 /* Stop reporting BUFFER_DONE/UNDERRUN to above layers */
Jerome Anand5dab11d2017-01-25 04:27:52 +05301186
Takashi Iwaif69bd102017-02-02 14:57:22 +01001187 intelhaddata->stream_info.running = false;
Takashi Iwaibcce7752017-02-01 17:18:20 +01001188 spin_unlock(&intelhaddata->had_spinlock);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301189 /* Disable Audio */
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001190 had_enable_audio(intelhaddata, false);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301191 /* Reset buffer pointers */
Takashi Iwaif4566aa2017-02-04 21:39:56 +01001192 had_reset_audio(intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301193 break;
1194
1195 default:
1196 retval = -EINVAL;
1197 }
1198 return retval;
1199}
1200
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001201/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001202 * ALSA PCM prepare callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301203 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001204static int had_pcm_prepare(struct snd_pcm_substream *substream)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301205{
1206 int retval;
1207 u32 disp_samp_freq, n_param;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001208 u32 link_rate = 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301209 struct snd_intelhad *intelhaddata;
1210 struct snd_pcm_runtime *runtime;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301211
Jerome Anand5dab11d2017-01-25 04:27:52 +05301212 intelhaddata = snd_pcm_substream_chip(substream);
1213 runtime = substream->runtime;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301214
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001215 if (!intelhaddata->connected) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001216 dev_dbg(intelhaddata->dev, "%s: HDMI cable plugged-out\n",
1217 __func__);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301218 retval = -ENODEV;
1219 goto prep_end;
1220 }
1221
Takashi Iwaic75b0472017-01-31 15:49:15 +01001222 dev_dbg(intelhaddata->dev, "period_size=%d\n",
Jerome Anand5dab11d2017-01-25 04:27:52 +05301223 (int)frames_to_bytes(runtime, runtime->period_size));
Takashi Iwaic75b0472017-01-31 15:49:15 +01001224 dev_dbg(intelhaddata->dev, "periods=%d\n", runtime->periods);
1225 dev_dbg(intelhaddata->dev, "buffer_size=%d\n",
1226 (int)snd_pcm_lib_buffer_bytes(substream));
1227 dev_dbg(intelhaddata->dev, "rate=%d\n", runtime->rate);
1228 dev_dbg(intelhaddata->dev, "channels=%d\n", runtime->channels);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301229
Jerome Anand5dab11d2017-01-25 04:27:52 +05301230 /* Get N value in KHz */
Takashi Iwaida864802017-01-31 13:52:22 +01001231 disp_samp_freq = intelhaddata->tmds_clock_speed;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301232
Takashi Iwaib5562902017-02-04 22:05:33 +01001233 retval = had_prog_n(substream->runtime->rate, &n_param, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301234 if (retval) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001235 dev_err(intelhaddata->dev,
1236 "programming N value failed %#x\n", retval);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301237 goto prep_end;
1238 }
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001239
1240 if (intelhaddata->dp_output)
Takashi Iwaida864802017-01-31 13:52:22 +01001241 link_rate = intelhaddata->link_rate;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001242
Takashi Iwaib5562902017-02-04 22:05:33 +01001243 had_prog_cts(substream->runtime->rate, disp_samp_freq, link_rate,
1244 n_param, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301245
Takashi Iwaib5562902017-02-04 22:05:33 +01001246 had_prog_dip(substream, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301247
Takashi Iwaib5562902017-02-04 22:05:33 +01001248 retval = had_init_audio_ctrl(substream, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301249
1250 /* Prog buffer address */
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001251 had_init_ringbuf(substream, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301252
1253 /*
1254 * Program channel mapping in following order:
1255 * FL, FR, C, LFE, RL, RR
1256 */
1257
Takashi Iwai79dda752017-01-30 17:23:39 +01001258 had_write_register(intelhaddata, AUD_BUF_CH_SWAP, SWAP_LFE_CENTER);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301259
1260prep_end:
1261 return retval;
1262}
1263
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001264/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001265 * ALSA PCM pointer callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301266 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001267static snd_pcm_uframes_t had_pcm_pointer(struct snd_pcm_substream *substream)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301268{
1269 struct snd_intelhad *intelhaddata;
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001270 int len;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301271
Jerome Anand5dab11d2017-01-25 04:27:52 +05301272 intelhaddata = snd_pcm_substream_chip(substream);
1273
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001274 if (!intelhaddata->connected)
Takashi Iwai79f439e2017-01-31 16:46:44 +01001275 return SNDRV_PCM_POS_XRUN;
1276
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001277 len = had_process_ringbuf(substream, intelhaddata);
1278 if (len < 0)
1279 return SNDRV_PCM_POS_XRUN;
Takashi Iwai8d48c012017-02-07 08:05:46 +01001280 len = bytes_to_frames(substream->runtime, len);
1281 /* wrapping may happen when periods=1 */
1282 len %= substream->runtime->buffer_size;
1283 return len;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301284}
1285
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001286/*
Takashi Iwai44684f62017-02-02 17:27:40 +01001287 * ALSA PCM mmap callback
Jerome Anand5dab11d2017-01-25 04:27:52 +05301288 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001289static int had_pcm_mmap(struct snd_pcm_substream *substream,
1290 struct vm_area_struct *vma)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301291{
Jerome Anand5dab11d2017-01-25 04:27:52 +05301292 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1293 return remap_pfn_range(vma, vma->vm_start,
1294 substream->dma_buffer.addr >> PAGE_SHIFT,
1295 vma->vm_end - vma->vm_start, vma->vm_page_prot);
1296}
1297
Takashi Iwai73997b02017-02-02 17:38:50 +01001298/*
1299 * ALSA PCM ops
1300 */
Takashi Iwaib5562902017-02-04 22:05:33 +01001301static const struct snd_pcm_ops had_pcm_ops = {
1302 .open = had_pcm_open,
1303 .close = had_pcm_close,
Takashi Iwai73997b02017-02-02 17:38:50 +01001304 .ioctl = snd_pcm_lib_ioctl,
Takashi Iwaib5562902017-02-04 22:05:33 +01001305 .hw_params = had_pcm_hw_params,
1306 .hw_free = had_pcm_hw_free,
1307 .prepare = had_pcm_prepare,
1308 .trigger = had_pcm_trigger,
1309 .pointer = had_pcm_pointer,
1310 .mmap = had_pcm_mmap,
Takashi Iwai73997b02017-02-02 17:38:50 +01001311};
1312
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001313/* process mode change of the running stream; called in mutex */
Takashi Iwaib5562902017-02-04 22:05:33 +01001314static int had_process_mode_change(struct snd_intelhad *intelhaddata)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301315{
Takashi Iwaida864802017-01-31 13:52:22 +01001316 struct snd_pcm_substream *substream;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301317 int retval = 0;
1318 u32 disp_samp_freq, n_param;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001319 u32 link_rate = 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301320
Takashi Iwai313d9f22017-02-02 13:00:12 +01001321 substream = had_substream_get(intelhaddata);
1322 if (!substream)
Takashi Iwaida864802017-01-31 13:52:22 +01001323 return 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301324
1325 /* Disable Audio */
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001326 had_enable_audio(intelhaddata, false);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301327
1328 /* Update CTS value */
Takashi Iwaida864802017-01-31 13:52:22 +01001329 disp_samp_freq = intelhaddata->tmds_clock_speed;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301330
Takashi Iwaib5562902017-02-04 22:05:33 +01001331 retval = had_prog_n(substream->runtime->rate, &n_param, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301332 if (retval) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001333 dev_err(intelhaddata->dev,
1334 "programming N value failed %#x\n", retval);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301335 goto out;
1336 }
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001337
1338 if (intelhaddata->dp_output)
Takashi Iwaida864802017-01-31 13:52:22 +01001339 link_rate = intelhaddata->link_rate;
Pierre-Louis Bossart964ca802017-01-31 14:16:52 -06001340
Takashi Iwaib5562902017-02-04 22:05:33 +01001341 had_prog_cts(substream->runtime->rate, disp_samp_freq, link_rate,
1342 n_param, intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301343
1344 /* Enable Audio */
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001345 had_enable_audio(intelhaddata, true);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301346
1347out:
Takashi Iwai313d9f22017-02-02 13:00:12 +01001348 had_substream_put(intelhaddata);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301349 return retval;
1350}
1351
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001352/* process hot plug, called from wq with mutex locked */
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001353static void had_process_hot_plug(struct snd_intelhad *intelhaddata)
Takashi Iwai372d8552017-01-31 13:57:58 +01001354{
Takashi Iwai372d8552017-01-31 13:57:58 +01001355 struct snd_pcm_substream *substream;
Takashi Iwai372d8552017-01-31 13:57:58 +01001356
Takashi Iwaibcce7752017-02-01 17:18:20 +01001357 spin_lock_irq(&intelhaddata->had_spinlock);
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001358 if (intelhaddata->connected) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001359 dev_dbg(intelhaddata->dev, "Device already connected\n");
Takashi Iwaibcce7752017-02-01 17:18:20 +01001360 spin_unlock_irq(&intelhaddata->had_spinlock);
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001361 return;
Takashi Iwai372d8552017-01-31 13:57:58 +01001362 }
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001363
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001364 intelhaddata->connected = true;
Takashi Iwaic75b0472017-01-31 15:49:15 +01001365 dev_dbg(intelhaddata->dev,
1366 "%s @ %d:DEBUG PLUG/UNPLUG : HAD_DRV_CONNECTED\n",
Takashi Iwai372d8552017-01-31 13:57:58 +01001367 __func__, __LINE__);
Takashi Iwaibcce7752017-02-01 17:18:20 +01001368 spin_unlock_irq(&intelhaddata->had_spinlock);
Takashi Iwai372d8552017-01-31 13:57:58 +01001369
Takashi Iwai372d8552017-01-31 13:57:58 +01001370 /* Safety check */
Takashi Iwai313d9f22017-02-02 13:00:12 +01001371 substream = had_substream_get(intelhaddata);
Takashi Iwai372d8552017-01-31 13:57:58 +01001372 if (substream) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001373 dev_dbg(intelhaddata->dev,
1374 "Force to stop the active stream by disconnection\n");
Takashi Iwai372d8552017-01-31 13:57:58 +01001375 /* Set runtime->state to hw_params done */
1376 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
Takashi Iwai313d9f22017-02-02 13:00:12 +01001377 had_substream_put(intelhaddata);
Takashi Iwai372d8552017-01-31 13:57:58 +01001378 }
1379
1380 had_build_channel_allocation_map(intelhaddata);
Takashi Iwai372d8552017-01-31 13:57:58 +01001381}
1382
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001383/* process hot unplug, called from wq with mutex locked */
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001384static void had_process_hot_unplug(struct snd_intelhad *intelhaddata)
Takashi Iwai372d8552017-01-31 13:57:58 +01001385{
Takashi Iwai313d9f22017-02-02 13:00:12 +01001386 struct snd_pcm_substream *substream;
Takashi Iwai372d8552017-01-31 13:57:58 +01001387
Takashi Iwai313d9f22017-02-02 13:00:12 +01001388 substream = had_substream_get(intelhaddata);
1389
Takashi Iwaibcce7752017-02-01 17:18:20 +01001390 spin_lock_irq(&intelhaddata->had_spinlock);
Takashi Iwai372d8552017-01-31 13:57:58 +01001391
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001392 if (!intelhaddata->connected) {
Takashi Iwaic75b0472017-01-31 15:49:15 +01001393 dev_dbg(intelhaddata->dev, "Device already disconnected\n");
Takashi Iwaibcce7752017-02-01 17:18:20 +01001394 spin_unlock_irq(&intelhaddata->had_spinlock);
Takashi Iwai313d9f22017-02-02 13:00:12 +01001395 goto out;
Takashi Iwai372d8552017-01-31 13:57:58 +01001396
Takashi Iwai372d8552017-01-31 13:57:58 +01001397 }
1398
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001399 /* Disable Audio */
Takashi Iwai40ce4b52017-02-07 16:17:06 +01001400 had_enable_audio(intelhaddata, false);
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001401
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001402 intelhaddata->connected = false;
Takashi Iwaic75b0472017-01-31 15:49:15 +01001403 dev_dbg(intelhaddata->dev,
1404 "%s @ %d:DEBUG PLUG/UNPLUG : HAD_DRV_DISCONNECTED\n",
Takashi Iwai372d8552017-01-31 13:57:58 +01001405 __func__, __LINE__);
Takashi Iwaibcce7752017-02-01 17:18:20 +01001406 spin_unlock_irq(&intelhaddata->had_spinlock);
Takashi Iwai313d9f22017-02-02 13:00:12 +01001407
1408 /* Report to above ALSA layer */
1409 if (substream)
1410 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1411
1412 out:
1413 if (substream)
1414 had_substream_put(intelhaddata);
Takashi Iwai372d8552017-01-31 13:57:58 +01001415 kfree(intelhaddata->chmap->chmap);
1416 intelhaddata->chmap->chmap = NULL;
Takashi Iwai372d8552017-01-31 13:57:58 +01001417}
1418
Takashi Iwai73997b02017-02-02 17:38:50 +01001419/*
1420 * ALSA iec958 and ELD controls
1421 */
Jerome Anand5dab11d2017-01-25 04:27:52 +05301422
Jerome Anand5dab11d2017-01-25 04:27:52 +05301423static int had_iec958_info(struct snd_kcontrol *kcontrol,
1424 struct snd_ctl_elem_info *uinfo)
1425{
1426 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1427 uinfo->count = 1;
1428 return 0;
1429}
1430
1431static int had_iec958_get(struct snd_kcontrol *kcontrol,
1432 struct snd_ctl_elem_value *ucontrol)
1433{
1434 struct snd_intelhad *intelhaddata = snd_kcontrol_chip(kcontrol);
1435
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001436 mutex_lock(&intelhaddata->mutex);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301437 ucontrol->value.iec958.status[0] = (intelhaddata->aes_bits >> 0) & 0xff;
1438 ucontrol->value.iec958.status[1] = (intelhaddata->aes_bits >> 8) & 0xff;
1439 ucontrol->value.iec958.status[2] =
1440 (intelhaddata->aes_bits >> 16) & 0xff;
1441 ucontrol->value.iec958.status[3] =
1442 (intelhaddata->aes_bits >> 24) & 0xff;
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001443 mutex_unlock(&intelhaddata->mutex);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301444 return 0;
1445}
Takashi Iwai372d8552017-01-31 13:57:58 +01001446
Jerome Anand5dab11d2017-01-25 04:27:52 +05301447static int had_iec958_mask_get(struct snd_kcontrol *kcontrol,
1448 struct snd_ctl_elem_value *ucontrol)
1449{
1450 ucontrol->value.iec958.status[0] = 0xff;
1451 ucontrol->value.iec958.status[1] = 0xff;
1452 ucontrol->value.iec958.status[2] = 0xff;
1453 ucontrol->value.iec958.status[3] = 0xff;
1454 return 0;
1455}
Takashi Iwai372d8552017-01-31 13:57:58 +01001456
Jerome Anand5dab11d2017-01-25 04:27:52 +05301457static int had_iec958_put(struct snd_kcontrol *kcontrol,
1458 struct snd_ctl_elem_value *ucontrol)
1459{
1460 unsigned int val;
1461 struct snd_intelhad *intelhaddata = snd_kcontrol_chip(kcontrol);
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001462 int changed = 0;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301463
Jerome Anand5dab11d2017-01-25 04:27:52 +05301464 val = (ucontrol->value.iec958.status[0] << 0) |
1465 (ucontrol->value.iec958.status[1] << 8) |
1466 (ucontrol->value.iec958.status[2] << 16) |
1467 (ucontrol->value.iec958.status[3] << 24);
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001468 mutex_lock(&intelhaddata->mutex);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301469 if (intelhaddata->aes_bits != val) {
1470 intelhaddata->aes_bits = val;
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001471 changed = 1;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301472 }
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001473 mutex_unlock(&intelhaddata->mutex);
1474 return changed;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301475}
1476
Takashi Iwai4aedb942017-02-02 16:38:39 +01001477static int had_ctl_eld_info(struct snd_kcontrol *kcontrol,
1478 struct snd_ctl_elem_info *uinfo)
1479{
1480 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
1481 uinfo->count = HDMI_MAX_ELD_BYTES;
1482 return 0;
1483}
1484
1485static int had_ctl_eld_get(struct snd_kcontrol *kcontrol,
1486 struct snd_ctl_elem_value *ucontrol)
1487{
1488 struct snd_intelhad *intelhaddata = snd_kcontrol_chip(kcontrol);
1489
1490 mutex_lock(&intelhaddata->mutex);
1491 memcpy(ucontrol->value.bytes.data, intelhaddata->eld,
1492 HDMI_MAX_ELD_BYTES);
1493 mutex_unlock(&intelhaddata->mutex);
1494 return 0;
1495}
1496
Takashi Iwai73997b02017-02-02 17:38:50 +01001497static const struct snd_kcontrol_new had_controls[] = {
Takashi Iwai4aedb942017-02-02 16:38:39 +01001498 {
1499 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1500 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1501 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, MASK),
1502 .info = had_iec958_info, /* shared */
1503 .get = had_iec958_mask_get,
1504 },
1505 {
1506 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1507 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
1508 .info = had_iec958_info,
1509 .get = had_iec958_get,
1510 .put = had_iec958_put,
1511 },
1512 {
1513 .access = (SNDRV_CTL_ELEM_ACCESS_READ |
1514 SNDRV_CTL_ELEM_ACCESS_VOLATILE),
1515 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1516 .name = "ELD",
1517 .info = had_ctl_eld_info,
1518 .get = had_ctl_eld_get,
1519 },
Jerome Anand5dab11d2017-01-25 04:27:52 +05301520};
1521
Takashi Iwai73997b02017-02-02 17:38:50 +01001522/*
1523 * audio interrupt handler
1524 */
Takashi Iwaida864802017-01-31 13:52:22 +01001525static irqreturn_t display_pipe_interrupt_handler(int irq, void *dev_id)
1526{
1527 struct snd_intelhad *ctx = dev_id;
1528 u32 audio_stat, audio_reg;
1529
Takashi Iwai4151ee82017-01-31 18:14:15 +01001530 audio_reg = AUD_HDMI_STATUS;
Takashi Iwai83af57d2017-02-03 08:50:06 +01001531 had_read_register(ctx, audio_reg, &audio_stat);
Takashi Iwaida864802017-01-31 13:52:22 +01001532
1533 if (audio_stat & HDMI_AUDIO_UNDERRUN) {
Takashi Iwai83af57d2017-02-03 08:50:06 +01001534 had_write_register(ctx, audio_reg, HDMI_AUDIO_UNDERRUN);
Takashi Iwaida864802017-01-31 13:52:22 +01001535 had_process_buffer_underrun(ctx);
1536 }
1537
1538 if (audio_stat & HDMI_AUDIO_BUFFER_DONE) {
Takashi Iwai83af57d2017-02-03 08:50:06 +01001539 had_write_register(ctx, audio_reg, HDMI_AUDIO_BUFFER_DONE);
Takashi Iwaida864802017-01-31 13:52:22 +01001540 had_process_buffer_done(ctx);
1541 }
1542
1543 return IRQ_HANDLED;
1544}
1545
Takashi Iwai73997b02017-02-02 17:38:50 +01001546/*
1547 * monitor plug/unplug notification from i915; just kick off the work
1548 */
Takashi Iwaida864802017-01-31 13:52:22 +01001549static void notify_audio_lpe(struct platform_device *pdev)
1550{
1551 struct snd_intelhad *ctx = platform_get_drvdata(pdev);
Takashi Iwaida864802017-01-31 13:52:22 +01001552
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001553 schedule_work(&ctx->hdmi_audio_wq);
1554}
Takashi Iwaida864802017-01-31 13:52:22 +01001555
Takashi Iwai73997b02017-02-02 17:38:50 +01001556/* the work to handle monitor hot plug/unplug */
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001557static void had_audio_wq(struct work_struct *work)
1558{
1559 struct snd_intelhad *ctx =
1560 container_of(work, struct snd_intelhad, hdmi_audio_wq);
1561 struct intel_hdmi_lpe_audio_pdata *pdata = ctx->dev->platform_data;
1562
Takashi Iwai182cdf22017-02-02 14:43:39 +01001563 pm_runtime_get_sync(ctx->dev);
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001564 mutex_lock(&ctx->mutex);
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001565 if (!pdata->hdmi_connected) {
1566 dev_dbg(ctx->dev, "%s: Event: HAD_NOTIFY_HOT_UNPLUG\n",
Takashi Iwaida864802017-01-31 13:52:22 +01001567 __func__);
Takashi Iwai4aedb942017-02-02 16:38:39 +01001568 memset(ctx->eld, 0, sizeof(ctx->eld)); /* clear the old ELD */
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001569 had_process_hot_unplug(ctx);
Takashi Iwaida864802017-01-31 13:52:22 +01001570 } else {
1571 struct intel_hdmi_lpe_audio_eld *eld = &pdata->eld;
1572
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001573 dev_dbg(ctx->dev, "%s: HAD_NOTIFY_ELD : port = %d, tmds = %d\n",
1574 __func__, eld->port_id, pdata->tmds_clock_speed);
1575
Takashi Iwaida864802017-01-31 13:52:22 +01001576 switch (eld->pipe_id) {
1577 case 0:
1578 ctx->had_config_offset = AUDIO_HDMI_CONFIG_A;
1579 break;
1580 case 1:
1581 ctx->had_config_offset = AUDIO_HDMI_CONFIG_B;
1582 break;
1583 case 2:
1584 ctx->had_config_offset = AUDIO_HDMI_CONFIG_C;
1585 break;
1586 default:
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001587 dev_dbg(ctx->dev, "Invalid pipe %d\n",
Takashi Iwaida864802017-01-31 13:52:22 +01001588 eld->pipe_id);
1589 break;
1590 }
1591
Takashi Iwaidf0435d2017-02-02 15:37:11 +01001592 memcpy(ctx->eld, eld->eld_data, sizeof(ctx->eld));
Takashi Iwaida864802017-01-31 13:52:22 +01001593
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001594 ctx->dp_output = pdata->dp_output;
1595 ctx->tmds_clock_speed = pdata->tmds_clock_speed;
1596 ctx->link_rate = pdata->link_rate;
1597
Takashi Iwaida864802017-01-31 13:52:22 +01001598 had_process_hot_plug(ctx);
1599
Takashi Iwai0e9c67d2017-02-01 17:53:19 +01001600 /* Process mode change if stream is active */
Takashi Iwaib5562902017-02-04 22:05:33 +01001601 had_process_mode_change(ctx);
Takashi Iwaida864802017-01-31 13:52:22 +01001602 }
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001603 mutex_unlock(&ctx->mutex);
Takashi Iwai182cdf22017-02-02 14:43:39 +01001604 pm_runtime_put(ctx->dev);
1605}
1606
1607/*
1608 * PM callbacks
1609 */
1610
1611static int hdmi_lpe_audio_runtime_suspend(struct device *dev)
1612{
1613 struct snd_intelhad *ctx = dev_get_drvdata(dev);
1614 struct snd_pcm_substream *substream;
1615
1616 substream = had_substream_get(ctx);
1617 if (substream) {
1618 snd_pcm_suspend(substream);
1619 had_substream_put(ctx);
1620 }
1621
1622 return 0;
1623}
1624
Arnd Bergmann1df98922017-02-07 14:38:51 +01001625static int __maybe_unused hdmi_lpe_audio_suspend(struct device *dev)
Takashi Iwai182cdf22017-02-02 14:43:39 +01001626{
1627 struct snd_intelhad *ctx = dev_get_drvdata(dev);
1628 int err;
1629
1630 err = hdmi_lpe_audio_runtime_suspend(dev);
1631 if (!err)
1632 snd_power_change_state(ctx->card, SNDRV_CTL_POWER_D3hot);
1633 return err;
1634}
1635
Arnd Bergmann1df98922017-02-07 14:38:51 +01001636static int __maybe_unused hdmi_lpe_audio_resume(struct device *dev)
Takashi Iwai182cdf22017-02-02 14:43:39 +01001637{
1638 struct snd_intelhad *ctx = dev_get_drvdata(dev);
1639
1640 snd_power_change_state(ctx->card, SNDRV_CTL_POWER_D0);
1641 return 0;
Takashi Iwaida864802017-01-31 13:52:22 +01001642}
1643
1644/* release resources */
1645static void hdmi_lpe_audio_free(struct snd_card *card)
1646{
1647 struct snd_intelhad *ctx = card->private_data;
1648
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001649 cancel_work_sync(&ctx->hdmi_audio_wq);
1650
Takashi Iwaida864802017-01-31 13:52:22 +01001651 if (ctx->mmio_start)
1652 iounmap(ctx->mmio_start);
1653 if (ctx->irq >= 0)
1654 free_irq(ctx->irq, ctx);
1655}
1656
1657/*
1658 * hdmi_lpe_audio_probe - start bridge with i915
1659 *
1660 * This function is called when the i915 driver creates the
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001661 * hdmi-lpe-audio platform device.
Takashi Iwaida864802017-01-31 13:52:22 +01001662 */
1663static int hdmi_lpe_audio_probe(struct platform_device *pdev)
1664{
1665 struct snd_card *card;
1666 struct snd_intelhad *ctx;
1667 struct snd_pcm *pcm;
1668 struct intel_hdmi_lpe_audio_pdata *pdata;
1669 int irq;
1670 struct resource *res_mmio;
Takashi Iwai4aedb942017-02-02 16:38:39 +01001671 int i, ret;
Takashi Iwaida864802017-01-31 13:52:22 +01001672
Takashi Iwaida864802017-01-31 13:52:22 +01001673 pdata = pdev->dev.platform_data;
1674 if (!pdata) {
1675 dev_err(&pdev->dev, "%s: quit: pdata not allocated by i915!!\n", __func__);
1676 return -EINVAL;
1677 }
1678
1679 /* get resources */
1680 irq = platform_get_irq(pdev, 0);
1681 if (irq < 0) {
1682 dev_err(&pdev->dev, "Could not get irq resource\n");
1683 return -ENODEV;
1684 }
1685
1686 res_mmio = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1687 if (!res_mmio) {
1688 dev_err(&pdev->dev, "Could not get IO_MEM resources\n");
1689 return -ENXIO;
1690 }
Jerome Anand5dab11d2017-01-25 04:27:52 +05301691
Takashi Iwai5647aec2017-01-31 08:14:34 +01001692 /* create a card instance with ALSA framework */
Takashi Iwaida864802017-01-31 13:52:22 +01001693 ret = snd_card_new(&pdev->dev, hdmi_card_index, hdmi_card_id,
1694 THIS_MODULE, sizeof(*ctx), &card);
1695 if (ret)
1696 return ret;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301697
Takashi Iwaida864802017-01-31 13:52:22 +01001698 ctx = card->private_data;
1699 spin_lock_init(&ctx->had_spinlock);
Takashi Iwai8f8d1d72017-02-01 17:24:02 +01001700 mutex_init(&ctx->mutex);
Takashi Iwai91b0cb02017-02-02 17:46:49 +01001701 ctx->connected = false;
Takashi Iwaida864802017-01-31 13:52:22 +01001702 ctx->dev = &pdev->dev;
1703 ctx->card = card;
Takashi Iwaida864802017-01-31 13:52:22 +01001704 ctx->aes_bits = SNDRV_PCM_DEFAULT_CON_SPDIF;
1705 strcpy(card->driver, INTEL_HAD);
Takashi Iwai873ab032017-02-07 12:14:04 +01001706 strcpy(card->shortname, "Intel HDMI/DP LPE Audio");
1707 strcpy(card->longname, "Intel HDMI/DP LPE Audio");
Jerome Anand5dab11d2017-01-25 04:27:52 +05301708
Takashi Iwaida864802017-01-31 13:52:22 +01001709 ctx->irq = -1;
1710 ctx->tmds_clock_speed = DIS_SAMPLE_RATE_148_5;
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001711 INIT_WORK(&ctx->hdmi_audio_wq, had_audio_wq);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301712
Takashi Iwaida864802017-01-31 13:52:22 +01001713 card->private_free = hdmi_lpe_audio_free;
1714
1715 /* assume pipe A as default */
1716 ctx->had_config_offset = AUDIO_HDMI_CONFIG_A;
1717
1718 platform_set_drvdata(pdev, ctx);
1719
1720 dev_dbg(&pdev->dev, "%s: mmio_start = 0x%x, mmio_end = 0x%x\n",
1721 __func__, (unsigned int)res_mmio->start,
1722 (unsigned int)res_mmio->end);
1723
1724 ctx->mmio_start = ioremap_nocache(res_mmio->start,
1725 (size_t)(resource_size(res_mmio)));
1726 if (!ctx->mmio_start) {
1727 dev_err(&pdev->dev, "Could not get ioremap\n");
1728 ret = -EACCES;
1729 goto err;
1730 }
1731
1732 /* setup interrupt handler */
1733 ret = request_irq(irq, display_pipe_interrupt_handler, 0,
1734 pdev->name, ctx);
1735 if (ret < 0) {
1736 dev_err(&pdev->dev, "request_irq failed\n");
1737 goto err;
1738 }
1739
1740 ctx->irq = irq;
1741
1742 ret = snd_pcm_new(card, INTEL_HAD, PCM_INDEX, MAX_PB_STREAMS,
1743 MAX_CAP_STREAMS, &pcm);
1744 if (ret)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301745 goto err;
1746
1747 /* setup private data which can be retrieved when required */
Takashi Iwaida864802017-01-31 13:52:22 +01001748 pcm->private_data = ctx;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301749 pcm->info_flags = 0;
1750 strncpy(pcm->name, card->shortname, strlen(card->shortname));
Takashi Iwaida864802017-01-31 13:52:22 +01001751 /* setup the ops for playabck */
Takashi Iwaib5562902017-02-04 22:05:33 +01001752 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &had_pcm_ops);
Takashi Iwai412bbe7d52017-02-02 22:03:22 +01001753
1754 /* only 32bit addressable */
1755 dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
1756 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
1757
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001758 /* allocate dma pages;
1759 * try to allocate 600k buffer as default which is large enough
Jerome Anand5dab11d2017-01-25 04:27:52 +05301760 */
Takashi Iwaida864802017-01-31 13:52:22 +01001761 snd_pcm_lib_preallocate_pages_for_all(pcm,
Jerome Anand5dab11d2017-01-25 04:27:52 +05301762 SNDRV_DMA_TYPE_DEV, NULL,
Takashi Iwaie1b239f32017-02-03 00:01:18 +01001763 HAD_DEFAULT_BUFFER, HAD_MAX_BUFFER);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301764
Takashi Iwai4aedb942017-02-02 16:38:39 +01001765 /* create controls */
1766 for (i = 0; i < ARRAY_SIZE(had_controls); i++) {
1767 ret = snd_ctl_add(card, snd_ctl_new1(&had_controls[i], ctx));
1768 if (ret < 0)
1769 goto err;
1770 }
Jerome Anand5dab11d2017-01-25 04:27:52 +05301771
1772 init_channel_allocations();
1773
1774 /* Register channel map controls */
Takashi Iwaida864802017-01-31 13:52:22 +01001775 ret = had_register_chmap_ctls(ctx, pcm);
1776 if (ret < 0)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301777 goto err;
1778
Takashi Iwaida864802017-01-31 13:52:22 +01001779 ret = snd_card_register(card);
1780 if (ret)
Takashi Iwai36ec0d92017-01-31 08:47:05 +01001781 goto err;
1782
Takashi Iwaibcce7752017-02-01 17:18:20 +01001783 spin_lock_irq(&pdata->lpe_audio_slock);
Takashi Iwaida864802017-01-31 13:52:22 +01001784 pdata->notify_audio_lpe = notify_audio_lpe;
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001785 pdata->notify_pending = false;
Takashi Iwaibcce7752017-02-01 17:18:20 +01001786 spin_unlock_irq(&pdata->lpe_audio_slock);
Takashi Iwaida864802017-01-31 13:52:22 +01001787
1788 pm_runtime_set_active(&pdev->dev);
1789 pm_runtime_enable(&pdev->dev);
1790
Takashi Iwai99b2ab92017-01-31 16:26:10 +01001791 dev_dbg(&pdev->dev, "%s: handle pending notification\n", __func__);
Takashi Iwaida864802017-01-31 13:52:22 +01001792 schedule_work(&ctx->hdmi_audio_wq);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301793
Takashi Iwai79dda752017-01-30 17:23:39 +01001794 return 0;
Takashi Iwai5647aec2017-01-31 08:14:34 +01001795
Jerome Anand5dab11d2017-01-25 04:27:52 +05301796err:
1797 snd_card_free(card);
Takashi Iwaida864802017-01-31 13:52:22 +01001798 return ret;
Jerome Anand5dab11d2017-01-25 04:27:52 +05301799}
1800
Takashi Iwai79dda752017-01-30 17:23:39 +01001801/*
Takashi Iwaida864802017-01-31 13:52:22 +01001802 * hdmi_lpe_audio_remove - stop bridge with i915
Jerome Anand5dab11d2017-01-25 04:27:52 +05301803 *
Takashi Iwai2e52f5e2017-01-31 17:09:13 +01001804 * This function is called when the platform device is destroyed.
Jerome Anand5dab11d2017-01-25 04:27:52 +05301805 */
Takashi Iwaida864802017-01-31 13:52:22 +01001806static int hdmi_lpe_audio_remove(struct platform_device *pdev)
Jerome Anand5dab11d2017-01-25 04:27:52 +05301807{
Takashi Iwaida864802017-01-31 13:52:22 +01001808 struct snd_intelhad *ctx = platform_get_drvdata(pdev);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301809
Takashi Iwaida864802017-01-31 13:52:22 +01001810 snd_card_free(ctx->card);
Jerome Anand5dab11d2017-01-25 04:27:52 +05301811 return 0;
1812}
1813
Takashi Iwai182cdf22017-02-02 14:43:39 +01001814static const struct dev_pm_ops hdmi_lpe_audio_pm = {
1815 SET_SYSTEM_SLEEP_PM_OPS(hdmi_lpe_audio_suspend, hdmi_lpe_audio_resume)
1816 SET_RUNTIME_PM_OPS(hdmi_lpe_audio_runtime_suspend, NULL, NULL)
1817};
1818
Takashi Iwaida864802017-01-31 13:52:22 +01001819static struct platform_driver hdmi_lpe_audio_driver = {
1820 .driver = {
1821 .name = "hdmi-lpe-audio",
Takashi Iwai182cdf22017-02-02 14:43:39 +01001822 .pm = &hdmi_lpe_audio_pm,
Takashi Iwaida864802017-01-31 13:52:22 +01001823 },
1824 .probe = hdmi_lpe_audio_probe,
1825 .remove = hdmi_lpe_audio_remove,
Takashi Iwaida864802017-01-31 13:52:22 +01001826};
1827
1828module_platform_driver(hdmi_lpe_audio_driver);
1829MODULE_ALIAS("platform:hdmi_lpe_audio");
1830
Jerome Anand5dab11d2017-01-25 04:27:52 +05301831MODULE_AUTHOR("Sailaja Bandarupalli <sailaja.bandarupalli@intel.com>");
1832MODULE_AUTHOR("Ramesh Babu K V <ramesh.babu@intel.com>");
1833MODULE_AUTHOR("Vaibhav Agarwal <vaibhav.agarwal@intel.com>");
1834MODULE_AUTHOR("Jerome Anand <jerome.anand@intel.com>");
1835MODULE_DESCRIPTION("Intel HDMI Audio driver");
1836MODULE_LICENSE("GPL v2");
1837MODULE_SUPPORTED_DEVICE("{Intel,Intel_HAD}");