blob: 2a370d694f6d96fa17de4d1dbb1afb339494b2d4 [file] [log] [blame]
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301/*
2 * hdac_hdmi.c - ASoc HDA-HDMI codec driver for Intel platforms
3 *
4 * Copyright (C) 2014-2015 Intel Corp
5 * Author: Samreen Nilofer <samreen.nilofer@intel.com>
6 * Subhransu S. Prusty <subhransu.s.prusty@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 */
20#include <linux/init.h>
21#include <linux/delay.h>
22#include <linux/module.h>
23#include <linux/pm_runtime.h>
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +053024#include <linux/hdmi.h>
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +053025#include <drm/drm_edid.h>
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053026#include <sound/pcm_params.h>
Jeeja KP4a3478d2016-02-12 07:46:06 +053027#include <sound/jack.h>
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053028#include <sound/soc.h>
29#include <sound/hdaudio_ext.h>
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +053030#include <sound/hda_i915.h>
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +053031#include <sound/pcm_drm_eld.h>
Subhransu S. Prustybcced702016-04-14 10:07:30 +053032#include <sound/hda_chmap.h>
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053033#include "../../hda/local.h"
Jeeja KP4a3478d2016-02-12 07:46:06 +053034#include "hdac_hdmi.h"
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053035
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +053036#define NAME_SIZE 32
37
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +053038#define AMP_OUT_MUTE 0xb080
39#define AMP_OUT_UNMUTE 0xb000
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053040#define PIN_OUT (AC_PINCTL_OUT_EN)
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +053041
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053042#define HDA_MAX_CONNECTIONS 32
43
Subhransu S. Prusty148569f2016-02-12 07:46:07 +053044#define HDA_MAX_CVTS 3
45
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053046#define ELD_MAX_SIZE 256
47#define ELD_FIXED_BYTES 20
48
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +053049#define ELD_VER_CEA_861D 2
50#define ELD_VER_PARTIAL 31
51#define ELD_MAX_MNL 16
52
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053053struct hdac_hdmi_cvt_params {
54 unsigned int channels_min;
55 unsigned int channels_max;
56 u32 rates;
57 u64 formats;
58 unsigned int maxbps;
59};
60
61struct hdac_hdmi_cvt {
Subhransu S. Prusty15b91442015-12-09 21:46:10 +053062 struct list_head head;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053063 hda_nid_t nid;
Jeeja KP4a3478d2016-02-12 07:46:06 +053064 const char *name;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053065 struct hdac_hdmi_cvt_params params;
66};
67
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +053068/* Currently only spk_alloc, more to be added */
69struct hdac_hdmi_parsed_eld {
70 u8 spk_alloc;
71};
72
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053073struct hdac_hdmi_eld {
74 bool monitor_present;
75 bool eld_valid;
76 int eld_size;
77 char eld_buffer[ELD_MAX_SIZE];
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +053078 struct hdac_hdmi_parsed_eld info;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053079};
80
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053081struct hdac_hdmi_pin {
Subhransu S. Prusty15b91442015-12-09 21:46:10 +053082 struct list_head head;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053083 hda_nid_t nid;
84 int num_mux_nids;
85 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053086 struct hdac_hdmi_eld eld;
87 struct hdac_ext_device *edev;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053088};
89
Jeeja KP4a3478d2016-02-12 07:46:06 +053090struct hdac_hdmi_pcm {
91 struct list_head head;
92 int pcm_id;
93 struct hdac_hdmi_pin *pin;
94 struct hdac_hdmi_cvt *cvt;
95 struct snd_jack *jack;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +053096 int stream_tag;
97 int channels;
98 int format;
Jeeja KPab1eea12017-01-24 21:49:05 +053099 bool chmap_set;
100 unsigned char chmap[8]; /* ALSA API channel-map */
101 struct mutex lock;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530102};
103
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530104struct hdac_hdmi_dai_pin_map {
105 int dai_id;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530106 struct hdac_hdmi_pin *pin;
107 struct hdac_hdmi_cvt *cvt;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530108};
109
110struct hdac_hdmi_priv {
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530111 struct hdac_hdmi_dai_pin_map dai_map[HDA_MAX_CVTS];
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530112 struct list_head pin_list;
113 struct list_head cvt_list;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530114 struct list_head pcm_list;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530115 int num_pin;
116 int num_cvt;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530117 struct mutex pin_mutex;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530118 struct hdac_chmap chmap;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530119};
120
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530121static struct hdac_hdmi_pcm *
122hdac_hdmi_get_pcm_from_cvt(struct hdac_hdmi_priv *hdmi,
123 struct hdac_hdmi_cvt *cvt)
124{
125 struct hdac_hdmi_pcm *pcm = NULL;
Jeeja KP1de777f2017-01-10 17:57:48 +0530126
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530127 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
128 if (pcm->cvt == cvt)
129 break;
130 }
131
132 return pcm;
133}
Jeeja KP1de777f2017-01-10 17:57:48 +0530134
Subhransu S. Prusty28890992016-04-14 10:07:34 +0530135static struct hdac_hdmi_pcm *get_hdmi_pcm_from_id(struct hdac_hdmi_priv *hdmi,
136 int pcm_idx)
137{
138 struct hdac_hdmi_pcm *pcm;
139
140 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
141 if (pcm->pcm_id == pcm_idx)
142 return pcm;
143 }
144
145 return NULL;
146}
147
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530148static inline struct hdac_ext_device *to_hda_ext_device(struct device *dev)
149{
Geliang Tang51b2c422015-12-28 22:47:13 +0800150 struct hdac_device *hdac = dev_to_hdac_dev(dev);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530151
Geliang Tang51b2c422015-12-28 22:47:13 +0800152 return to_ehdac_device(hdac);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530153}
154
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530155static unsigned int sad_format(const u8 *sad)
156{
157 return ((sad[0] >> 0x3) & 0x1f);
158}
159
160static unsigned int sad_sample_bits_lpcm(const u8 *sad)
161{
162 return (sad[2] & 7);
163}
164
165static int hdac_hdmi_eld_limit_formats(struct snd_pcm_runtime *runtime,
166 void *eld)
167{
168 u64 formats = SNDRV_PCM_FMTBIT_S16;
169 int i;
170 const u8 *sad, *eld_buf = eld;
171
172 sad = drm_eld_sad(eld_buf);
173 if (!sad)
174 goto format_constraint;
175
176 for (i = drm_eld_sad_count(eld_buf); i > 0; i--, sad += 3) {
177 if (sad_format(sad) == 1) { /* AUDIO_CODING_TYPE_LPCM */
178
179 /*
180 * the controller support 20 and 24 bits in 32 bit
181 * container so we set S32
182 */
183 if (sad_sample_bits_lpcm(sad) & 0x6)
184 formats |= SNDRV_PCM_FMTBIT_S32;
185 }
186 }
187
188format_constraint:
189 return snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT,
190 formats);
191
192}
193
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530194static void
195hdac_hdmi_set_dip_index(struct hdac_ext_device *hdac, hda_nid_t pin_nid,
196 int packet_index, int byte_index)
197{
198 int val;
199
200 val = (packet_index << 5) | (byte_index & 0x1f);
201
202 snd_hdac_codec_write(&hdac->hdac, pin_nid, 0,
203 AC_VERB_SET_HDMI_DIP_INDEX, val);
204}
205
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530206struct dp_audio_infoframe {
207 u8 type; /* 0x84 */
208 u8 len; /* 0x1b */
209 u8 ver; /* 0x11 << 2 */
210
211 u8 CC02_CT47; /* match with HDMI infoframe from this on */
212 u8 SS01_SF24;
213 u8 CXT04;
214 u8 CA;
215 u8 LFEPBL01_LSV36_DM_INH7;
216};
217
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530218static int hdac_hdmi_setup_audio_infoframe(struct hdac_ext_device *hdac,
Jeeja KPab1eea12017-01-24 21:49:05 +0530219 struct hdac_hdmi_pcm *pcm, struct hdac_hdmi_pin *pin)
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530220{
221 uint8_t buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AUDIO_INFOFRAME_SIZE];
222 struct hdmi_audio_infoframe frame;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530223 struct dp_audio_infoframe dp_ai;
224 struct hdac_hdmi_priv *hdmi = hdac->private_data;
Jeeja KPab1eea12017-01-24 21:49:05 +0530225 struct hdac_hdmi_cvt *cvt = pcm->cvt;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530226 u8 *dip;
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530227 int ret;
228 int i;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530229 const u8 *eld_buf;
230 u8 conn_type;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530231 int channels, ca;
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530232
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530233 ca = snd_hdac_channel_allocation(&hdac->hdac, pin->eld.info.spk_alloc,
Jeeja KPab1eea12017-01-24 21:49:05 +0530234 pcm->channels, pcm->chmap_set, true, pcm->chmap);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530235
236 channels = snd_hdac_get_active_channels(ca);
Jeeja KPab1eea12017-01-24 21:49:05 +0530237 hdmi->chmap.ops.set_channel_count(&hdac->hdac, cvt->nid, channels);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530238
239 snd_hdac_setup_channel_mapping(&hdmi->chmap, pin->nid, false, ca,
Jeeja KPab1eea12017-01-24 21:49:05 +0530240 pcm->channels, pcm->chmap, pcm->chmap_set);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530241
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530242 eld_buf = pin->eld.eld_buffer;
243 conn_type = drm_eld_get_conn_type(eld_buf);
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530244
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530245 switch (conn_type) {
246 case DRM_ELD_CONN_TYPE_HDMI:
247 hdmi_audio_infoframe_init(&frame);
248
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530249 frame.channels = channels;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530250 frame.channel_allocation = ca;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530251
252 ret = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
253 if (ret < 0)
254 return ret;
255
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530256 break;
257
258 case DRM_ELD_CONN_TYPE_DP:
259 memset(&dp_ai, 0, sizeof(dp_ai));
260 dp_ai.type = 0x84;
261 dp_ai.len = 0x1b;
262 dp_ai.ver = 0x11 << 2;
263 dp_ai.CC02_CT47 = channels - 1;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530264 dp_ai.CA = ca;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530265
266 dip = (u8 *)&dp_ai;
267 break;
268
269 default:
270 dev_err(&hdac->hdac.dev, "Invalid connection type: %d\n",
271 conn_type);
272 return -EIO;
273 }
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530274
275 /* stop infoframe transmission */
Jeeja KPab1eea12017-01-24 21:49:05 +0530276 hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0);
277 snd_hdac_codec_write(&hdac->hdac, pin->nid, 0,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530278 AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_DISABLE);
279
280
281 /* Fill infoframe. Index auto-incremented */
Jeeja KPab1eea12017-01-24 21:49:05 +0530282 hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0);
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530283 if (conn_type == DRM_ELD_CONN_TYPE_HDMI) {
Subhransu S. Prusty391005e2016-03-10 09:04:07 +0530284 for (i = 0; i < sizeof(buffer); i++)
Jeeja KPab1eea12017-01-24 21:49:05 +0530285 snd_hdac_codec_write(&hdac->hdac, pin->nid, 0,
Subhransu S. Prusty391005e2016-03-10 09:04:07 +0530286 AC_VERB_SET_HDMI_DIP_DATA, buffer[i]);
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530287 } else {
288 for (i = 0; i < sizeof(dp_ai); i++)
Jeeja KPab1eea12017-01-24 21:49:05 +0530289 snd_hdac_codec_write(&hdac->hdac, pin->nid, 0,
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530290 AC_VERB_SET_HDMI_DIP_DATA, dip[i]);
291 }
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530292
293 /* Start infoframe */
Jeeja KPab1eea12017-01-24 21:49:05 +0530294 hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0);
295 snd_hdac_codec_write(&hdac->hdac, pin->nid, 0,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530296 AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_BEST);
297
298 return 0;
299}
300
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530301static int hdac_hdmi_set_tdm_slot(struct snd_soc_dai *dai,
302 unsigned int tx_mask, unsigned int rx_mask,
303 int slots, int slot_width)
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530304{
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530305 struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai);
306 struct hdac_hdmi_priv *hdmi = edev->private_data;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530307 struct hdac_hdmi_dai_pin_map *dai_map;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530308 struct hdac_hdmi_pcm *pcm;
309
310 dev_dbg(&edev->hdac.dev, "%s: strm_tag: %d\n", __func__, tx_mask);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530311
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530312 dai_map = &hdmi->dai_map[dai->id];
313
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530314 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530315
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530316 if (pcm)
317 pcm->stream_tag = (tx_mask << 4);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530318
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530319 return 0;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530320}
321
322static int hdac_hdmi_set_hw_params(struct snd_pcm_substream *substream,
323 struct snd_pcm_hw_params *hparams, struct snd_soc_dai *dai)
324{
325 struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai);
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530326 struct hdac_hdmi_priv *hdmi = hdac->private_data;
327 struct hdac_hdmi_dai_pin_map *dai_map;
328 struct hdac_hdmi_pin *pin;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530329 struct hdac_hdmi_pcm *pcm;
330 int format;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530331
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530332 dai_map = &hdmi->dai_map[dai->id];
333 pin = dai_map->pin;
334
335 if (!pin)
336 return -ENODEV;
337
338 if ((!pin->eld.monitor_present) || (!pin->eld.eld_valid)) {
339 dev_err(&hdac->hdac.dev, "device is not configured for this pin: %d\n",
340 pin->nid);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530341 return -ENODEV;
342 }
343
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530344 format = snd_hdac_calc_stream_format(params_rate(hparams),
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530345 params_channels(hparams), params_format(hparams),
346 24, 0);
347
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530348 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
349 if (!pcm)
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530350 return -EIO;
351
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530352 pcm->format = format;
353 pcm->channels = params_channels(hparams);
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530354
355 return 0;
356}
357
358static int hdac_hdmi_query_pin_connlist(struct hdac_ext_device *hdac,
359 struct hdac_hdmi_pin *pin)
360{
361 if (!(get_wcaps(&hdac->hdac, pin->nid) & AC_WCAP_CONN_LIST)) {
362 dev_warn(&hdac->hdac.dev,
363 "HDMI: pin %d wcaps %#x does not support connection list\n",
364 pin->nid, get_wcaps(&hdac->hdac, pin->nid));
365 return -EINVAL;
366 }
367
368 pin->num_mux_nids = snd_hdac_get_connections(&hdac->hdac, pin->nid,
369 pin->mux_nids, HDA_MAX_CONNECTIONS);
370 if (pin->num_mux_nids == 0)
371 dev_warn(&hdac->hdac.dev, "No connections found for pin: %d\n",
372 pin->nid);
373
374 dev_dbg(&hdac->hdac.dev, "num_mux_nids %d for pin: %d\n",
375 pin->num_mux_nids, pin->nid);
376
377 return pin->num_mux_nids;
378}
379
380/*
381 * Query pcm list and return pin widget to which stream is routed.
382 *
383 * Also query connection list of the pin, to validate the cvt to pin map.
384 *
385 * Same stream rendering to multiple pins simultaneously can be done
386 * possibly, but not supported for now in driver. So return the first pin
387 * connected.
388 */
389static struct hdac_hdmi_pin *hdac_hdmi_get_pin_from_cvt(
390 struct hdac_ext_device *edev,
391 struct hdac_hdmi_priv *hdmi,
392 struct hdac_hdmi_cvt *cvt)
393{
394 struct hdac_hdmi_pcm *pcm;
395 struct hdac_hdmi_pin *pin = NULL;
396 int ret, i;
397
398 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
399 if (pcm->cvt == cvt) {
400 pin = pcm->pin;
401 break;
402 }
403 }
404
405 if (pin) {
406 ret = hdac_hdmi_query_pin_connlist(edev, pin);
407 if (ret < 0)
408 return NULL;
409
410 for (i = 0; i < pin->num_mux_nids; i++) {
411 if (pin->mux_nids[i] == cvt->nid)
412 return pin;
413 }
414 }
415
416 return NULL;
417}
418
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530419/*
420 * This tries to get a valid pin and set the HW constraints based on the
421 * ELD. Even if a valid pin is not found return success so that device open
422 * doesn't fail.
423 */
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530424static int hdac_hdmi_pcm_open(struct snd_pcm_substream *substream,
425 struct snd_soc_dai *dai)
426{
427 struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai);
428 struct hdac_hdmi_priv *hdmi = hdac->private_data;
429 struct hdac_hdmi_dai_pin_map *dai_map;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530430 struct hdac_hdmi_cvt *cvt;
431 struct hdac_hdmi_pin *pin;
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530432 int ret;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530433
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530434 dai_map = &hdmi->dai_map[dai->id];
435
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530436 cvt = dai_map->cvt;
437 pin = hdac_hdmi_get_pin_from_cvt(hdac, hdmi, cvt);
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530438
439 /*
440 * To make PA and other userland happy.
441 * userland scans devices so returning error does not help.
442 */
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530443 if (!pin)
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530444 return 0;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530445
446 if ((!pin->eld.monitor_present) ||
447 (!pin->eld.eld_valid)) {
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530448
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530449 dev_warn(&hdac->hdac.dev,
Colin Ian King3fb7b4e2016-08-26 19:17:25 +0100450 "Failed: monitor present? %d ELD valid?: %d for pin: %d\n",
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530451 pin->eld.monitor_present, pin->eld.eld_valid, pin->nid);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +0530452
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530453 return 0;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530454 }
455
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530456 dai_map->pin = pin;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530457
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530458 ret = hdac_hdmi_eld_limit_formats(substream->runtime,
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530459 pin->eld.eld_buffer);
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530460 if (ret < 0)
461 return ret;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530462
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530463 return snd_pcm_hw_constraint_eld(substream->runtime,
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530464 pin->eld.eld_buffer);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530465}
466
467static void hdac_hdmi_pcm_close(struct snd_pcm_substream *substream,
468 struct snd_soc_dai *dai)
469{
470 struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai);
471 struct hdac_hdmi_priv *hdmi = hdac->private_data;
472 struct hdac_hdmi_dai_pin_map *dai_map;
Jeeja KPab1eea12017-01-24 21:49:05 +0530473 struct hdac_hdmi_pcm *pcm;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530474
475 dai_map = &hdmi->dai_map[dai->id];
476
Jeeja KPab1eea12017-01-24 21:49:05 +0530477 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530478
Jeeja KPab1eea12017-01-24 21:49:05 +0530479 if (pcm) {
480 mutex_lock(&pcm->lock);
481 pcm->chmap_set = false;
482 memset(pcm->chmap, 0, sizeof(pcm->chmap));
483 pcm->channels = 0;
484 mutex_unlock(&pcm->lock);
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530485 }
Jeeja KPab1eea12017-01-24 21:49:05 +0530486
487 if (dai_map->pin)
488 dai_map->pin = NULL;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530489}
490
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530491static int
492hdac_hdmi_query_cvt_params(struct hdac_device *hdac, struct hdac_hdmi_cvt *cvt)
493{
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530494 unsigned int chans;
495 struct hdac_ext_device *edev = to_ehdac_device(hdac);
496 struct hdac_hdmi_priv *hdmi = edev->private_data;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530497 int err;
498
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530499 chans = get_wcaps(hdac, cvt->nid);
500 chans = get_wcaps_channels(chans);
501
502 cvt->params.channels_min = 2;
503
504 cvt->params.channels_max = chans;
505 if (chans > hdmi->chmap.channels_max)
506 hdmi->chmap.channels_max = chans;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530507
508 err = snd_hdac_query_supported_pcm(hdac, cvt->nid,
509 &cvt->params.rates,
510 &cvt->params.formats,
511 &cvt->params.maxbps);
512 if (err < 0)
513 dev_err(&hdac->dev,
514 "Failed to query pcm params for nid %d: %d\n",
515 cvt->nid, err);
516
517 return err;
518}
519
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530520static int hdac_hdmi_fill_widget_info(struct device *dev,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530521 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_type id,
522 void *priv, const char *wname, const char *stream,
523 struct snd_kcontrol_new *wc, int numkc,
524 int (*event)(struct snd_soc_dapm_widget *,
525 struct snd_kcontrol *, int), unsigned short event_flags)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530526{
527 w->id = id;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530528 w->name = devm_kstrdup(dev, wname, GFP_KERNEL);
529 if (!w->name)
530 return -ENOMEM;
531
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530532 w->sname = stream;
533 w->reg = SND_SOC_NOPM;
534 w->shift = 0;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530535 w->kcontrol_news = wc;
536 w->num_kcontrols = numkc;
537 w->priv = priv;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530538 w->event = event;
539 w->event_flags = event_flags;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530540
541 return 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530542}
543
544static void hdac_hdmi_fill_route(struct snd_soc_dapm_route *route,
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530545 const char *sink, const char *control, const char *src,
546 int (*handler)(struct snd_soc_dapm_widget *src,
547 struct snd_soc_dapm_widget *sink))
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530548{
549 route->sink = sink;
550 route->source = src;
551 route->control = control;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530552 route->connected = handler;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530553}
554
Jeeja KP4a3478d2016-02-12 07:46:06 +0530555static struct hdac_hdmi_pcm *hdac_hdmi_get_pcm(struct hdac_ext_device *edev,
556 struct hdac_hdmi_pin *pin)
557{
558 struct hdac_hdmi_priv *hdmi = edev->private_data;
559 struct hdac_hdmi_pcm *pcm = NULL;
560
561 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
562 if (pcm->pin == pin)
563 return pcm;
564 }
565
566 return NULL;
567}
568
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530569static void hdac_hdmi_set_power_state(struct hdac_ext_device *edev,
570 hda_nid_t nid, unsigned int pwr_state)
571{
572 if (get_wcaps(&edev->hdac, nid) & AC_WCAP_POWER) {
573 if (!snd_hdac_check_power_state(&edev->hdac, nid, pwr_state))
574 snd_hdac_codec_write(&edev->hdac, nid, 0,
575 AC_VERB_SET_POWER_STATE, pwr_state);
576 }
577}
578
579static void hdac_hdmi_set_amp(struct hdac_ext_device *edev,
580 hda_nid_t nid, int val)
581{
582 if (get_wcaps(&edev->hdac, nid) & AC_WCAP_OUT_AMP)
583 snd_hdac_codec_write(&edev->hdac, nid, 0,
584 AC_VERB_SET_AMP_GAIN_MUTE, val);
585}
586
587
588static int hdac_hdmi_pin_output_widget_event(struct snd_soc_dapm_widget *w,
589 struct snd_kcontrol *kc, int event)
590{
591 struct hdac_hdmi_pin *pin = w->priv;
592 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
593 struct hdac_hdmi_pcm *pcm;
594
595 dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n",
596 __func__, w->name, event);
597
598 pcm = hdac_hdmi_get_pcm(edev, pin);
599 if (!pcm)
600 return -EIO;
601
602 switch (event) {
603 case SND_SOC_DAPM_PRE_PMU:
604 hdac_hdmi_set_power_state(edev, pin->nid, AC_PWRST_D0);
605
606 /* Enable out path for this pin widget */
607 snd_hdac_codec_write(&edev->hdac, pin->nid, 0,
608 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
609
610 hdac_hdmi_set_amp(edev, pin->nid, AMP_OUT_UNMUTE);
611
Jeeja KPab1eea12017-01-24 21:49:05 +0530612 return hdac_hdmi_setup_audio_infoframe(edev, pcm, pin);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530613
614 case SND_SOC_DAPM_POST_PMD:
615 hdac_hdmi_set_amp(edev, pin->nid, AMP_OUT_MUTE);
616
617 /* Disable out path for this pin widget */
618 snd_hdac_codec_write(&edev->hdac, pin->nid, 0,
619 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
620
621 hdac_hdmi_set_power_state(edev, pin->nid, AC_PWRST_D3);
622 break;
623
624 }
625
626 return 0;
627}
628
629static int hdac_hdmi_cvt_output_widget_event(struct snd_soc_dapm_widget *w,
630 struct snd_kcontrol *kc, int event)
631{
632 struct hdac_hdmi_cvt *cvt = w->priv;
633 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
634 struct hdac_hdmi_priv *hdmi = edev->private_data;
635 struct hdac_hdmi_pcm *pcm;
636
637 dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n",
638 __func__, w->name, event);
639
640 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, cvt);
641 if (!pcm)
642 return -EIO;
643
644 switch (event) {
645 case SND_SOC_DAPM_PRE_PMU:
646 hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D0);
647
648 /* Enable transmission */
649 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
650 AC_VERB_SET_DIGI_CONVERT_1, 1);
651
652 /* Category Code (CC) to zero */
653 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
654 AC_VERB_SET_DIGI_CONVERT_2, 0);
655
656 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
657 AC_VERB_SET_CHANNEL_STREAMID, pcm->stream_tag);
658 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
659 AC_VERB_SET_STREAM_FORMAT, pcm->format);
660 break;
661
662 case SND_SOC_DAPM_POST_PMD:
663 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
664 AC_VERB_SET_CHANNEL_STREAMID, 0);
665 snd_hdac_codec_write(&edev->hdac, cvt->nid, 0,
666 AC_VERB_SET_STREAM_FORMAT, 0);
667
668 hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D3);
669 break;
670
671 }
672
673 return 0;
674}
675
676static int hdac_hdmi_pin_mux_widget_event(struct snd_soc_dapm_widget *w,
677 struct snd_kcontrol *kc, int event)
678{
679 struct hdac_hdmi_pin *pin = w->priv;
680 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
681 int mux_idx;
682
683 dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n",
684 __func__, w->name, event);
685
686 if (!kc)
687 kc = w->kcontrols[0];
688
689 mux_idx = dapm_kcontrol_get_value(kc);
690 if (mux_idx > 0) {
691 snd_hdac_codec_write(&edev->hdac, pin->nid, 0,
692 AC_VERB_SET_CONNECT_SEL, (mux_idx - 1));
693 }
694
695 return 0;
696}
697
Jeeja KP4a3478d2016-02-12 07:46:06 +0530698/*
699 * Based on user selection, map the PINs with the PCMs.
700 */
701static int hdac_hdmi_set_pin_mux(struct snd_kcontrol *kcontrol,
702 struct snd_ctl_elem_value *ucontrol)
703{
704 int ret;
705 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
706 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
707 struct snd_soc_dapm_context *dapm = w->dapm;
708 struct hdac_hdmi_pin *pin = w->priv;
709 struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev);
710 struct hdac_hdmi_priv *hdmi = edev->private_data;
711 struct hdac_hdmi_pcm *pcm = NULL;
712 const char *cvt_name = e->texts[ucontrol->value.enumerated.item[0]];
713
714 ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
715 if (ret < 0)
716 return ret;
717
718 mutex_lock(&hdmi->pin_mutex);
719 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
720 if (pcm->pin == pin)
721 pcm->pin = NULL;
722
723 /*
724 * Jack status is not reported during device probe as the
725 * PCMs are not registered by then. So report it here.
726 */
727 if (!strcmp(cvt_name, pcm->cvt->name) && !pcm->pin) {
728 pcm->pin = pin;
729 if (pin->eld.monitor_present && pin->eld.eld_valid) {
730 dev_dbg(&edev->hdac.dev,
731 "jack report for pcm=%d\n",
732 pcm->pcm_id);
733
734 snd_jack_report(pcm->jack, SND_JACK_AVOUT);
735 }
736 mutex_unlock(&hdmi->pin_mutex);
737 return ret;
738 }
739 }
740 mutex_unlock(&hdmi->pin_mutex);
741
742 return ret;
743}
744
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530745/*
746 * Ideally the Mux inputs should be based on the num_muxs enumerated, but
747 * the display driver seem to be programming the connection list for the pin
748 * widget runtime.
749 *
750 * So programming all the possible inputs for the mux, the user has to take
751 * care of selecting the right one and leaving all other inputs selected to
752 * "NONE"
753 */
754static int hdac_hdmi_create_pin_muxs(struct hdac_ext_device *edev,
755 struct hdac_hdmi_pin *pin,
756 struct snd_soc_dapm_widget *widget,
757 const char *widget_name)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530758{
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530759 struct hdac_hdmi_priv *hdmi = edev->private_data;
760 struct snd_kcontrol_new *kc;
761 struct hdac_hdmi_cvt *cvt;
762 struct soc_enum *se;
763 char kc_name[NAME_SIZE];
764 char mux_items[NAME_SIZE];
765 /* To hold inputs to the Pin mux */
766 char *items[HDA_MAX_CONNECTIONS];
767 int i = 0;
768 int num_items = hdmi->num_cvt + 1;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530769
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530770 kc = devm_kzalloc(&edev->hdac.dev, sizeof(*kc), GFP_KERNEL);
771 if (!kc)
772 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530773
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530774 se = devm_kzalloc(&edev->hdac.dev, sizeof(*se), GFP_KERNEL);
775 if (!se)
776 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530777
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530778 sprintf(kc_name, "Pin %d Input", pin->nid);
779 kc->name = devm_kstrdup(&edev->hdac.dev, kc_name, GFP_KERNEL);
780 if (!kc->name)
781 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530782
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530783 kc->private_value = (long)se;
784 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
785 kc->access = 0;
786 kc->info = snd_soc_info_enum_double;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530787 kc->put = hdac_hdmi_set_pin_mux;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530788 kc->get = snd_soc_dapm_get_enum_double;
789
790 se->reg = SND_SOC_NOPM;
791
792 /* enum texts: ["NONE", "cvt #", "cvt #", ...] */
793 se->items = num_items;
794 se->mask = roundup_pow_of_two(se->items) - 1;
795
796 sprintf(mux_items, "NONE");
797 items[i] = devm_kstrdup(&edev->hdac.dev, mux_items, GFP_KERNEL);
798 if (!items[i])
799 return -ENOMEM;
800
801 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
802 i++;
803 sprintf(mux_items, "cvt %d", cvt->nid);
804 items[i] = devm_kstrdup(&edev->hdac.dev, mux_items, GFP_KERNEL);
805 if (!items[i])
806 return -ENOMEM;
807 }
808
809 se->texts = devm_kmemdup(&edev->hdac.dev, items,
810 (num_items * sizeof(char *)), GFP_KERNEL);
811 if (!se->texts)
812 return -ENOMEM;
813
814 return hdac_hdmi_fill_widget_info(&edev->hdac.dev, widget,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530815 snd_soc_dapm_mux, pin, widget_name, NULL, kc, 1,
816 hdac_hdmi_pin_mux_widget_event,
817 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_REG);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530818}
819
820/* Add cvt <- input <- mux route map */
821static void hdac_hdmi_add_pinmux_cvt_route(struct hdac_ext_device *edev,
822 struct snd_soc_dapm_widget *widgets,
823 struct snd_soc_dapm_route *route, int rindex)
824{
825 struct hdac_hdmi_priv *hdmi = edev->private_data;
826 const struct snd_kcontrol_new *kc;
827 struct soc_enum *se;
828 int mux_index = hdmi->num_cvt + hdmi->num_pin;
829 int i, j;
830
831 for (i = 0; i < hdmi->num_pin; i++) {
832 kc = widgets[mux_index].kcontrol_news;
833 se = (struct soc_enum *)kc->private_value;
834 for (j = 0; j < hdmi->num_cvt; j++) {
835 hdac_hdmi_fill_route(&route[rindex],
836 widgets[mux_index].name,
837 se->texts[j + 1],
838 widgets[j].name, NULL);
839
840 rindex++;
841 }
842
843 mux_index++;
844 }
845}
846
847/*
848 * Widgets are added in the below sequence
849 * Converter widgets for num converters enumerated
850 * Pin widgets for num pins enumerated
851 * Pin mux widgets to represent connenction list of pin widget
852 *
853 * Total widgets elements = num_cvt + num_pin + num_pin;
854 *
855 * Routes are added as below:
856 * pin mux -> pin (based on num_pins)
857 * cvt -> "Input sel control" -> pin_mux
858 *
859 * Total route elements:
860 * num_pins + (pin_muxes * num_cvt)
861 */
862static int create_fill_widget_route_map(struct snd_soc_dapm_context *dapm)
863{
864 struct snd_soc_dapm_widget *widgets;
865 struct snd_soc_dapm_route *route;
866 struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev);
867 struct hdac_hdmi_priv *hdmi = edev->private_data;
868 struct snd_soc_dai_driver *dai_drv = dapm->component->dai_drv;
869 char widget_name[NAME_SIZE];
870 struct hdac_hdmi_cvt *cvt;
871 struct hdac_hdmi_pin *pin;
872 int ret, i = 0, num_routes = 0;
873
874 if (list_empty(&hdmi->cvt_list) || list_empty(&hdmi->pin_list))
875 return -EINVAL;
876
877 widgets = devm_kzalloc(dapm->dev,
878 (sizeof(*widgets) * ((2 * hdmi->num_pin) + hdmi->num_cvt)),
879 GFP_KERNEL);
880
881 if (!widgets)
882 return -ENOMEM;
883
884 /* DAPM widgets to represent each converter widget */
885 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
886 sprintf(widget_name, "Converter %d", cvt->nid);
887 ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i],
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530888 snd_soc_dapm_aif_in, cvt,
889 widget_name, dai_drv[i].playback.stream_name, NULL, 0,
890 hdac_hdmi_cvt_output_widget_event,
891 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530892 if (ret < 0)
893 return ret;
894 i++;
895 }
896
897 list_for_each_entry(pin, &hdmi->pin_list, head) {
898 sprintf(widget_name, "hif%d Output", pin->nid);
899 ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i],
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530900 snd_soc_dapm_output, pin,
901 widget_name, NULL, NULL, 0,
902 hdac_hdmi_pin_output_widget_event,
903 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530904 if (ret < 0)
905 return ret;
906 i++;
907 }
908
909 /* DAPM widgets to represent the connection list to pin widget */
910 list_for_each_entry(pin, &hdmi->pin_list, head) {
911 sprintf(widget_name, "Pin %d Mux", pin->nid);
912 ret = hdac_hdmi_create_pin_muxs(edev, pin, &widgets[i],
913 widget_name);
914 if (ret < 0)
915 return ret;
916 i++;
917
918 /* For cvt to pin_mux mapping */
919 num_routes += hdmi->num_cvt;
920
921 /* For pin_mux to pin mapping */
922 num_routes++;
923 }
924
925 route = devm_kzalloc(dapm->dev, (sizeof(*route) * num_routes),
926 GFP_KERNEL);
927 if (!route)
928 return -ENOMEM;
929
930 i = 0;
931 /* Add pin <- NULL <- mux route map */
932 list_for_each_entry(pin, &hdmi->pin_list, head) {
933 int sink_index = i + hdmi->num_cvt;
934 int src_index = sink_index + hdmi->num_pin;
935
936 hdac_hdmi_fill_route(&route[i],
937 widgets[sink_index].name, NULL,
938 widgets[src_index].name, NULL);
939 i++;
940
941 }
942
943 hdac_hdmi_add_pinmux_cvt_route(edev, widgets, route, i);
944
945 snd_soc_dapm_new_controls(dapm, widgets,
946 ((2 * hdmi->num_pin) + hdmi->num_cvt));
947
948 snd_soc_dapm_add_routes(dapm, route, num_routes);
949 snd_soc_dapm_new_widgets(dapm->card);
950
951 return 0;
952
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530953}
954
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530955static int hdac_hdmi_init_dai_map(struct hdac_ext_device *edev)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530956{
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530957 struct hdac_hdmi_priv *hdmi = edev->private_data;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530958 struct hdac_hdmi_dai_pin_map *dai_map;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530959 struct hdac_hdmi_cvt *cvt;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530960 int dai_id = 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530961
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530962 if (list_empty(&hdmi->cvt_list))
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530963 return -EINVAL;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530964
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530965 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
966 dai_map = &hdmi->dai_map[dai_id];
967 dai_map->dai_id = dai_id;
968 dai_map->cvt = cvt;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530969
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530970 dai_id++;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530971
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530972 if (dai_id == HDA_MAX_CVTS) {
973 dev_warn(&edev->hdac.dev,
974 "Max dais supported: %d\n", dai_id);
975 break;
976 }
977 }
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530978
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530979 return 0;
980}
981
982static int hdac_hdmi_add_cvt(struct hdac_ext_device *edev, hda_nid_t nid)
983{
984 struct hdac_hdmi_priv *hdmi = edev->private_data;
985 struct hdac_hdmi_cvt *cvt;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530986 char name[NAME_SIZE];
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530987
988 cvt = kzalloc(sizeof(*cvt), GFP_KERNEL);
989 if (!cvt)
990 return -ENOMEM;
991
992 cvt->nid = nid;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530993 sprintf(name, "cvt %d", cvt->nid);
994 cvt->name = kstrdup(name, GFP_KERNEL);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530995
996 list_add_tail(&cvt->head, &hdmi->cvt_list);
997 hdmi->num_cvt++;
998
999 return hdac_hdmi_query_cvt_params(&edev->hdac, cvt);
1000}
1001
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301002static int hdac_hdmi_parse_eld(struct hdac_ext_device *edev,
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +05301003 struct hdac_hdmi_pin *pin)
1004{
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301005 unsigned int ver, mnl;
1006
1007 ver = (pin->eld.eld_buffer[DRM_ELD_VER] & DRM_ELD_VER_MASK)
1008 >> DRM_ELD_VER_SHIFT;
1009
1010 if (ver != ELD_VER_CEA_861D && ver != ELD_VER_PARTIAL) {
1011 dev_err(&edev->hdac.dev, "HDMI: Unknown ELD version %d\n", ver);
1012 return -EINVAL;
1013 }
1014
1015 mnl = (pin->eld.eld_buffer[DRM_ELD_CEA_EDID_VER_MNL] &
1016 DRM_ELD_MNL_MASK) >> DRM_ELD_MNL_SHIFT;
1017
1018 if (mnl > ELD_MAX_MNL) {
1019 dev_err(&edev->hdac.dev, "HDMI: MNL Invalid %d\n", mnl);
1020 return -EINVAL;
1021 }
1022
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +05301023 pin->eld.info.spk_alloc = pin->eld.eld_buffer[DRM_ELD_SPEAKER];
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301024
1025 return 0;
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +05301026}
1027
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301028static void hdac_hdmi_present_sense(struct hdac_hdmi_pin *pin)
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301029{
1030 struct hdac_ext_device *edev = pin->edev;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301031 struct hdac_hdmi_priv *hdmi = edev->private_data;
1032 struct hdac_hdmi_pcm *pcm;
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301033 int size;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301034
1035 mutex_lock(&hdmi->pin_mutex);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301036 pin->eld.monitor_present = false;
1037
1038 size = snd_hdac_acomp_get_eld(&edev->hdac, pin->nid, -1,
1039 &pin->eld.monitor_present, pin->eld.eld_buffer,
1040 ELD_MAX_SIZE);
1041
1042 if (size > 0) {
1043 size = min(size, ELD_MAX_SIZE);
1044 if (hdac_hdmi_parse_eld(edev, pin) < 0)
1045 size = -EINVAL;
1046 }
1047
1048 if (size > 0) {
1049 pin->eld.eld_valid = true;
1050 pin->eld.eld_size = size;
1051 } else {
1052 pin->eld.eld_valid = false;
1053 pin->eld.eld_size = 0;
1054 }
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301055
Jeeja KP4a3478d2016-02-12 07:46:06 +05301056 pcm = hdac_hdmi_get_pcm(edev, pin);
1057
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301058 if (!pin->eld.monitor_present || !pin->eld.eld_valid) {
1059
1060 dev_dbg(&edev->hdac.dev, "%s: disconnect for pin %d\n",
1061 __func__, pin->nid);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301062
1063 /*
1064 * PCMs are not registered during device probe, so don't
1065 * report jack here. It will be done in usermode mux
1066 * control select.
1067 */
1068 if (pcm) {
1069 dev_dbg(&edev->hdac.dev,
1070 "jack report for pcm=%d\n", pcm->pcm_id);
1071
1072 snd_jack_report(pcm->jack, 0);
1073 }
1074
1075 mutex_unlock(&hdmi->pin_mutex);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301076 return;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301077 }
1078
1079 if (pin->eld.monitor_present && pin->eld.eld_valid) {
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301080 if (pcm) {
1081 dev_dbg(&edev->hdac.dev,
1082 "jack report for pcm=%d\n",
1083 pcm->pcm_id);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301084
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301085 snd_jack_report(pcm->jack, SND_JACK_AVOUT);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301086 }
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301087
1088 print_hex_dump_debug("ELD: ", DUMP_PREFIX_OFFSET, 16, 1,
1089 pin->eld.eld_buffer, pin->eld.eld_size, false);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301090 }
1091
Jeeja KP4a3478d2016-02-12 07:46:06 +05301092 mutex_unlock(&hdmi->pin_mutex);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301093}
1094
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301095static int hdac_hdmi_add_pin(struct hdac_ext_device *edev, hda_nid_t nid)
1096{
1097 struct hdac_hdmi_priv *hdmi = edev->private_data;
1098 struct hdac_hdmi_pin *pin;
1099
1100 pin = kzalloc(sizeof(*pin), GFP_KERNEL);
1101 if (!pin)
1102 return -ENOMEM;
1103
1104 pin->nid = nid;
1105
1106 list_add_tail(&pin->head, &hdmi->pin_list);
1107 hdmi->num_pin++;
1108
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301109 pin->edev = edev;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301110
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301111 return 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301112}
1113
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301114#define INTEL_VENDOR_NID 0x08
1115#define INTEL_GET_VENDOR_VERB 0xf81
1116#define INTEL_SET_VENDOR_VERB 0x781
1117#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
1118#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
1119
1120static void hdac_hdmi_skl_enable_all_pins(struct hdac_device *hdac)
1121{
1122 unsigned int vendor_param;
1123
1124 vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0,
1125 INTEL_GET_VENDOR_VERB, 0);
1126 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
1127 return;
1128
1129 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
1130 vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0,
1131 INTEL_SET_VENDOR_VERB, vendor_param);
1132 if (vendor_param == -1)
1133 return;
1134}
1135
1136static void hdac_hdmi_skl_enable_dp12(struct hdac_device *hdac)
1137{
1138 unsigned int vendor_param;
1139
1140 vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0,
1141 INTEL_GET_VENDOR_VERB, 0);
1142 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
1143 return;
1144
1145 /* enable DP1.2 mode */
1146 vendor_param |= INTEL_EN_DP12;
1147 vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0,
1148 INTEL_SET_VENDOR_VERB, vendor_param);
1149 if (vendor_param == -1)
1150 return;
1151
1152}
1153
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301154static struct snd_soc_dai_ops hdmi_dai_ops = {
1155 .startup = hdac_hdmi_pcm_open,
1156 .shutdown = hdac_hdmi_pcm_close,
1157 .hw_params = hdac_hdmi_set_hw_params,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +05301158 .set_tdm_slot = hdac_hdmi_set_tdm_slot,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301159};
1160
1161/*
1162 * Each converter can support a stream independently. So a dai is created
1163 * based on the number of converter queried.
1164 */
1165static int hdac_hdmi_create_dais(struct hdac_device *hdac,
1166 struct snd_soc_dai_driver **dais,
1167 struct hdac_hdmi_priv *hdmi, int num_dais)
1168{
1169 struct snd_soc_dai_driver *hdmi_dais;
1170 struct hdac_hdmi_cvt *cvt;
1171 char name[NAME_SIZE], dai_name[NAME_SIZE];
1172 int i = 0;
1173 u32 rates, bps;
1174 unsigned int rate_max = 384000, rate_min = 8000;
1175 u64 formats;
1176 int ret;
1177
1178 hdmi_dais = devm_kzalloc(&hdac->dev,
1179 (sizeof(*hdmi_dais) * num_dais),
1180 GFP_KERNEL);
1181 if (!hdmi_dais)
1182 return -ENOMEM;
1183
1184 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
1185 ret = snd_hdac_query_supported_pcm(hdac, cvt->nid,
1186 &rates, &formats, &bps);
1187 if (ret)
1188 return ret;
1189
1190 sprintf(dai_name, "intel-hdmi-hifi%d", i+1);
1191 hdmi_dais[i].name = devm_kstrdup(&hdac->dev,
1192 dai_name, GFP_KERNEL);
1193
1194 if (!hdmi_dais[i].name)
1195 return -ENOMEM;
1196
1197 snprintf(name, sizeof(name), "hifi%d", i+1);
1198 hdmi_dais[i].playback.stream_name =
1199 devm_kstrdup(&hdac->dev, name, GFP_KERNEL);
1200 if (!hdmi_dais[i].playback.stream_name)
1201 return -ENOMEM;
1202
1203 /*
1204 * Set caps based on capability queried from the converter.
1205 * It will be constrained runtime based on ELD queried.
1206 */
1207 hdmi_dais[i].playback.formats = formats;
1208 hdmi_dais[i].playback.rates = rates;
1209 hdmi_dais[i].playback.rate_max = rate_max;
1210 hdmi_dais[i].playback.rate_min = rate_min;
1211 hdmi_dais[i].playback.channels_min = 2;
1212 hdmi_dais[i].playback.channels_max = 2;
1213 hdmi_dais[i].ops = &hdmi_dai_ops;
1214
1215 i++;
1216 }
1217
1218 *dais = hdmi_dais;
1219
1220 return 0;
1221}
1222
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301223/*
1224 * Parse all nodes and store the cvt/pin nids in array
1225 * Add one time initialization for pin and cvt widgets
1226 */
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301227static int hdac_hdmi_parse_and_map_nid(struct hdac_ext_device *edev,
1228 struct snd_soc_dai_driver **dais, int *num_dais)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301229{
1230 hda_nid_t nid;
Sudip Mukherjee3c83ac22015-12-01 14:29:35 +05301231 int i, num_nodes;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301232 struct hdac_device *hdac = &edev->hdac;
1233 struct hdac_hdmi_priv *hdmi = edev->private_data;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301234 int ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301235
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301236 hdac_hdmi_skl_enable_all_pins(hdac);
1237 hdac_hdmi_skl_enable_dp12(hdac);
1238
Sudip Mukherjee3c83ac22015-12-01 14:29:35 +05301239 num_nodes = snd_hdac_get_sub_nodes(hdac, hdac->afg, &nid);
Subhransu S. Prusty541140d2015-12-09 21:46:08 +05301240 if (!nid || num_nodes <= 0) {
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301241 dev_warn(&hdac->dev, "HDMI: failed to get afg sub nodes\n");
1242 return -EINVAL;
1243 }
1244
Sudip Mukherjee3c83ac22015-12-01 14:29:35 +05301245 hdac->num_nodes = num_nodes;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301246 hdac->start_nid = nid;
1247
1248 for (i = 0; i < hdac->num_nodes; i++, nid++) {
1249 unsigned int caps;
1250 unsigned int type;
1251
1252 caps = get_wcaps(hdac, nid);
1253 type = get_wcaps_type(caps);
1254
1255 if (!(caps & AC_WCAP_DIGITAL))
1256 continue;
1257
1258 switch (type) {
1259
1260 case AC_WID_AUD_OUT:
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301261 ret = hdac_hdmi_add_cvt(edev, nid);
1262 if (ret < 0)
1263 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301264 break;
1265
1266 case AC_WID_PIN:
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301267 ret = hdac_hdmi_add_pin(edev, nid);
1268 if (ret < 0)
1269 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301270 break;
1271 }
1272 }
1273
1274 hdac->end_nid = nid;
1275
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301276 if (!hdmi->num_pin || !hdmi->num_cvt)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301277 return -EIO;
1278
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301279 ret = hdac_hdmi_create_dais(hdac, dais, hdmi, hdmi->num_cvt);
1280 if (ret) {
1281 dev_err(&hdac->dev, "Failed to create dais with err: %d\n",
1282 ret);
1283 return ret;
1284 }
1285
1286 *num_dais = hdmi->num_cvt;
1287
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301288 return hdac_hdmi_init_dai_map(edev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301289}
1290
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -07001291static void hdac_hdmi_eld_notify_cb(void *aptr, int port, int pipe)
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301292{
1293 struct hdac_ext_device *edev = aptr;
1294 struct hdac_hdmi_priv *hdmi = edev->private_data;
1295 struct hdac_hdmi_pin *pin;
1296 struct snd_soc_codec *codec = edev->scodec;
1297
1298 /* Don't know how this mapping is derived */
1299 hda_nid_t pin_nid = port + 0x04;
1300
1301 dev_dbg(&edev->hdac.dev, "%s: for pin: %d\n", __func__, pin_nid);
1302
1303 /*
1304 * skip notification during system suspend (but not in runtime PM);
1305 * the state will be updated at resume. Also since the ELD and
1306 * connection states are updated in anyway at the end of the resume,
1307 * we can skip it when received during PM process.
1308 */
1309 if (snd_power_get_state(codec->component.card->snd_card) !=
1310 SNDRV_CTL_POWER_D0)
1311 return;
1312
1313 if (atomic_read(&edev->hdac.in_pm))
1314 return;
1315
1316 list_for_each_entry(pin, &hdmi->pin_list, head) {
1317 if (pin->nid == pin_nid)
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301318 hdac_hdmi_present_sense(pin);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301319 }
1320}
1321
1322static struct i915_audio_component_audio_ops aops = {
1323 .pin_eld_notify = hdac_hdmi_eld_notify_cb,
1324};
1325
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301326static struct snd_pcm *hdac_hdmi_get_pcm_from_id(struct snd_soc_card *card,
1327 int device)
1328{
1329 struct snd_soc_pcm_runtime *rtd;
1330
1331 list_for_each_entry(rtd, &card->rtd_list, list) {
1332 if (rtd->pcm && (rtd->pcm->device == device))
1333 return rtd->pcm;
1334 }
1335
1336 return NULL;
1337}
1338
Jeeja KP4a3478d2016-02-12 07:46:06 +05301339int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int device)
1340{
1341 char jack_name[NAME_SIZE];
1342 struct snd_soc_codec *codec = dai->codec;
1343 struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec);
1344 struct snd_soc_dapm_context *dapm =
1345 snd_soc_component_get_dapm(&codec->component);
1346 struct hdac_hdmi_priv *hdmi = edev->private_data;
1347 struct hdac_hdmi_pcm *pcm;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301348 struct snd_pcm *snd_pcm;
1349 int err;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301350
1351 /*
1352 * this is a new PCM device, create new pcm and
1353 * add to the pcm list
1354 */
1355 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
1356 if (!pcm)
1357 return -ENOMEM;
1358 pcm->pcm_id = device;
1359 pcm->cvt = hdmi->dai_map[dai->id].cvt;
Jeeja KPab1eea12017-01-24 21:49:05 +05301360 mutex_init(&pcm->lock);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301361
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301362 snd_pcm = hdac_hdmi_get_pcm_from_id(dai->component->card, device);
1363 if (snd_pcm) {
1364 err = snd_hdac_add_chmap_ctls(snd_pcm, device, &hdmi->chmap);
1365 if (err < 0) {
1366 dev_err(&edev->hdac.dev,
1367 "chmap control add failed with err: %d for pcm: %d\n",
1368 err, device);
1369 kfree(pcm);
1370 return err;
1371 }
1372 }
1373
Jeeja KP4a3478d2016-02-12 07:46:06 +05301374 list_add_tail(&pcm->head, &hdmi->pcm_list);
1375
1376 sprintf(jack_name, "HDMI/DP, pcm=%d Jack", device);
1377
1378 return snd_jack_new(dapm->card->snd_card, jack_name,
1379 SND_JACK_AVOUT, &pcm->jack, true, false);
1380}
1381EXPORT_SYMBOL_GPL(hdac_hdmi_jack_init);
1382
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301383static int hdmi_codec_probe(struct snd_soc_codec *codec)
1384{
1385 struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec);
1386 struct hdac_hdmi_priv *hdmi = edev->private_data;
1387 struct snd_soc_dapm_context *dapm =
1388 snd_soc_component_get_dapm(&codec->component);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301389 struct hdac_hdmi_pin *pin;
Vinod Koulb2047e92016-05-12 08:58:55 +05301390 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301391 int ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301392
1393 edev->scodec = codec;
1394
Vinod Koulb2047e92016-05-12 08:58:55 +05301395 /*
1396 * hold the ref while we probe, also no need to drop the ref on
1397 * exit, we call pm_runtime_suspend() so that will do for us
1398 */
1399 hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdac.dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05301400 if (!hlink) {
1401 dev_err(&edev->hdac.dev, "hdac link not found\n");
1402 return -EIO;
1403 }
1404
Vinod Koulb2047e92016-05-12 08:58:55 +05301405 snd_hdac_ext_bus_link_get(edev->ebus, hlink);
1406
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301407 ret = create_fill_widget_route_map(dapm);
1408 if (ret < 0)
1409 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301410
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301411 aops.audio_ptr = edev;
1412 ret = snd_hdac_i915_register_notifier(&aops);
1413 if (ret < 0) {
1414 dev_err(&edev->hdac.dev, "notifier register failed: err: %d\n",
1415 ret);
1416 return ret;
1417 }
1418
1419 list_for_each_entry(pin, &hdmi->pin_list, head)
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301420 hdac_hdmi_present_sense(pin);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301421
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301422 /* Imp: Store the card pointer in hda_codec */
1423 edev->card = dapm->card->snd_card;
1424
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301425 /*
1426 * hdac_device core already sets the state to active and calls
1427 * get_noresume. So enable runtime and set the device to suspend.
1428 */
1429 pm_runtime_enable(&edev->hdac.dev);
1430 pm_runtime_put(&edev->hdac.dev);
1431 pm_runtime_suspend(&edev->hdac.dev);
1432
1433 return 0;
1434}
1435
1436static int hdmi_codec_remove(struct snd_soc_codec *codec)
1437{
1438 struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec);
1439
1440 pm_runtime_disable(&edev->hdac.dev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301441 return 0;
1442}
1443
Jeeja KP571d5072016-02-22 07:50:33 +05301444#ifdef CONFIG_PM
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301445static int hdmi_codec_prepare(struct device *dev)
1446{
1447 struct hdac_ext_device *edev = to_hda_ext_device(dev);
1448 struct hdac_device *hdac = &edev->hdac;
1449
1450 pm_runtime_get_sync(&edev->hdac.dev);
1451
1452 /*
1453 * Power down afg.
1454 * codec_read is preferred over codec_write to set the power state.
1455 * This way verb is send to set the power state and response
1456 * is received. So setting power state is ensured without using loop
1457 * to read the state.
1458 */
1459 snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE,
1460 AC_PWRST_D3);
1461
1462 return 0;
1463}
1464
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301465static void hdmi_codec_complete(struct device *dev)
Jeeja KP571d5072016-02-22 07:50:33 +05301466{
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301467 struct hdac_ext_device *edev = to_hda_ext_device(dev);
Jeeja KP571d5072016-02-22 07:50:33 +05301468 struct hdac_hdmi_priv *hdmi = edev->private_data;
1469 struct hdac_hdmi_pin *pin;
1470 struct hdac_device *hdac = &edev->hdac;
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301471
1472 /* Power up afg */
1473 snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE,
1474 AC_PWRST_D0);
Jeeja KP571d5072016-02-22 07:50:33 +05301475
1476 hdac_hdmi_skl_enable_all_pins(&edev->hdac);
1477 hdac_hdmi_skl_enable_dp12(&edev->hdac);
1478
Jeeja KP571d5072016-02-22 07:50:33 +05301479 /*
1480 * As the ELD notify callback request is not entertained while the
1481 * device is in suspend state. Need to manually check detection of
1482 * all pins here.
1483 */
1484 list_for_each_entry(pin, &hdmi->pin_list, head)
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301485 hdac_hdmi_present_sense(pin);
Jeeja KP571d5072016-02-22 07:50:33 +05301486
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301487 pm_runtime_put_sync(&edev->hdac.dev);
Jeeja KP571d5072016-02-22 07:50:33 +05301488}
1489#else
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301490#define hdmi_codec_prepare NULL
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301491#define hdmi_codec_complete NULL
Jeeja KP571d5072016-02-22 07:50:33 +05301492#endif
1493
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301494static struct snd_soc_codec_driver hdmi_hda_codec = {
1495 .probe = hdmi_codec_probe,
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301496 .remove = hdmi_codec_remove,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301497 .idle_bias_off = true,
1498};
1499
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301500static void hdac_hdmi_get_chmap(struct hdac_device *hdac, int pcm_idx,
1501 unsigned char *chmap)
1502{
1503 struct hdac_ext_device *edev = to_ehdac_device(hdac);
1504 struct hdac_hdmi_priv *hdmi = edev->private_data;
1505 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301506
Jeeja KPab1eea12017-01-24 21:49:05 +05301507 memcpy(chmap, pcm->chmap, ARRAY_SIZE(pcm->chmap));
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301508}
1509
1510static void hdac_hdmi_set_chmap(struct hdac_device *hdac, int pcm_idx,
1511 unsigned char *chmap, int prepared)
1512{
1513 struct hdac_ext_device *edev = to_ehdac_device(hdac);
1514 struct hdac_hdmi_priv *hdmi = edev->private_data;
1515 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
1516 struct hdac_hdmi_pin *pin = pcm->pin;
1517
Jeeja KPab1eea12017-01-24 21:49:05 +05301518 mutex_lock(&pcm->lock);
1519 pcm->chmap_set = true;
1520 memcpy(pcm->chmap, chmap, ARRAY_SIZE(pcm->chmap));
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301521 if (prepared)
Jeeja KPab1eea12017-01-24 21:49:05 +05301522 hdac_hdmi_setup_audio_infoframe(edev, pcm, pin);
1523 mutex_unlock(&pcm->lock);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301524}
1525
1526static bool is_hdac_hdmi_pcm_attached(struct hdac_device *hdac, int pcm_idx)
1527{
1528 struct hdac_ext_device *edev = to_ehdac_device(hdac);
1529 struct hdac_hdmi_priv *hdmi = edev->private_data;
1530 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
1531 struct hdac_hdmi_pin *pin = pcm->pin;
1532
1533 return pin ? true:false;
1534}
1535
1536static int hdac_hdmi_get_spk_alloc(struct hdac_device *hdac, int pcm_idx)
1537{
1538 struct hdac_ext_device *edev = to_ehdac_device(hdac);
1539 struct hdac_hdmi_priv *hdmi = edev->private_data;
1540 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
1541 struct hdac_hdmi_pin *pin = pcm->pin;
1542
Dan Carpenter8f658812016-05-03 10:42:58 +03001543 if (!pin || !pin->eld.eld_valid)
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301544 return 0;
1545
1546 return pin->eld.info.spk_alloc;
1547}
1548
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301549static int hdac_hdmi_dev_probe(struct hdac_ext_device *edev)
1550{
1551 struct hdac_device *codec = &edev->hdac;
1552 struct hdac_hdmi_priv *hdmi_priv;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301553 struct snd_soc_dai_driver *hdmi_dais = NULL;
Vinod Koulb2047e92016-05-12 08:58:55 +05301554 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301555 int num_dais = 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301556 int ret = 0;
1557
Vinod Koulb2047e92016-05-12 08:58:55 +05301558 /* hold the ref while we probe */
1559 hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdac.dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05301560 if (!hlink) {
1561 dev_err(&edev->hdac.dev, "hdac link not found\n");
1562 return -EIO;
1563 }
1564
Vinod Koulb2047e92016-05-12 08:58:55 +05301565 snd_hdac_ext_bus_link_get(edev->ebus, hlink);
1566
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301567 hdmi_priv = devm_kzalloc(&codec->dev, sizeof(*hdmi_priv), GFP_KERNEL);
1568 if (hdmi_priv == NULL)
1569 return -ENOMEM;
1570
1571 edev->private_data = hdmi_priv;
Subhransu S. Prustybcced702016-04-14 10:07:30 +05301572 snd_hdac_register_chmap_ops(codec, &hdmi_priv->chmap);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301573 hdmi_priv->chmap.ops.get_chmap = hdac_hdmi_get_chmap;
1574 hdmi_priv->chmap.ops.set_chmap = hdac_hdmi_set_chmap;
1575 hdmi_priv->chmap.ops.is_pcm_attached = is_hdac_hdmi_pcm_attached;
1576 hdmi_priv->chmap.ops.get_spk_alloc = hdac_hdmi_get_spk_alloc;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301577
1578 dev_set_drvdata(&codec->dev, edev);
1579
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301580 INIT_LIST_HEAD(&hdmi_priv->pin_list);
1581 INIT_LIST_HEAD(&hdmi_priv->cvt_list);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301582 INIT_LIST_HEAD(&hdmi_priv->pcm_list);
1583 mutex_init(&hdmi_priv->pin_mutex);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301584
Ramesh Babuaeaccef2016-02-17 21:34:01 +05301585 /*
1586 * Turned off in the runtime_suspend during the first explicit
1587 * pm_runtime_suspend call.
1588 */
1589 ret = snd_hdac_display_power(edev->hdac.bus, true);
1590 if (ret < 0) {
1591 dev_err(&edev->hdac.dev,
1592 "Cannot turn on display power on i915 err: %d\n",
1593 ret);
1594 return ret;
1595 }
1596
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301597 ret = hdac_hdmi_parse_and_map_nid(edev, &hdmi_dais, &num_dais);
1598 if (ret < 0) {
1599 dev_err(&codec->dev,
1600 "Failed in parse and map nid with err: %d\n", ret);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301601 return ret;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301602 }
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301603
1604 /* ASoC specific initialization */
Vinod Koulb2047e92016-05-12 08:58:55 +05301605 ret = snd_soc_register_codec(&codec->dev, &hdmi_hda_codec,
1606 hdmi_dais, num_dais);
1607
1608 snd_hdac_ext_bus_link_put(edev->ebus, hlink);
1609
1610 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301611}
1612
1613static int hdac_hdmi_dev_remove(struct hdac_ext_device *edev)
1614{
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301615 struct hdac_hdmi_priv *hdmi = edev->private_data;
1616 struct hdac_hdmi_pin *pin, *pin_next;
1617 struct hdac_hdmi_cvt *cvt, *cvt_next;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301618 struct hdac_hdmi_pcm *pcm, *pcm_next;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301619
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301620 snd_soc_unregister_codec(&edev->hdac.dev);
1621
Jeeja KP4a3478d2016-02-12 07:46:06 +05301622 list_for_each_entry_safe(pcm, pcm_next, &hdmi->pcm_list, head) {
1623 pcm->cvt = NULL;
1624 pcm->pin = NULL;
1625 list_del(&pcm->head);
1626 kfree(pcm);
1627 }
1628
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301629 list_for_each_entry_safe(cvt, cvt_next, &hdmi->cvt_list, head) {
1630 list_del(&cvt->head);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301631 kfree(cvt->name);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301632 kfree(cvt);
1633 }
1634
1635 list_for_each_entry_safe(pin, pin_next, &hdmi->pin_list, head) {
1636 list_del(&pin->head);
1637 kfree(pin);
1638 }
1639
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301640 return 0;
1641}
1642
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301643#ifdef CONFIG_PM
1644static int hdac_hdmi_runtime_suspend(struct device *dev)
1645{
1646 struct hdac_ext_device *edev = to_hda_ext_device(dev);
1647 struct hdac_device *hdac = &edev->hdac;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301648 struct hdac_bus *bus = hdac->bus;
Vinod Koulb2047e92016-05-12 08:58:55 +05301649 struct hdac_ext_bus *ebus = hbus_to_ebus(bus);
1650 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301651 int err;
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301652
1653 dev_dbg(dev, "Enter: %s\n", __func__);
1654
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301655 /* controller may not have been initialized for the first time */
1656 if (!bus)
1657 return 0;
1658
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301659 /*
1660 * Power down afg.
1661 * codec_read is preferred over codec_write to set the power state.
1662 * This way verb is send to set the power state and response
1663 * is received. So setting power state is ensured without using loop
1664 * to read the state.
1665 */
1666 snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE,
1667 AC_PWRST_D3);
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301668 err = snd_hdac_display_power(bus, false);
1669 if (err < 0) {
1670 dev_err(bus->dev, "Cannot turn on display power on i915\n");
1671 return err;
1672 }
1673
Vinod Koulb2047e92016-05-12 08:58:55 +05301674 hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05301675 if (!hlink) {
1676 dev_err(dev, "hdac link not found\n");
1677 return -EIO;
1678 }
1679
Vinod Koulb2047e92016-05-12 08:58:55 +05301680 snd_hdac_ext_bus_link_put(ebus, hlink);
1681
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301682 return 0;
1683}
1684
1685static int hdac_hdmi_runtime_resume(struct device *dev)
1686{
1687 struct hdac_ext_device *edev = to_hda_ext_device(dev);
1688 struct hdac_device *hdac = &edev->hdac;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301689 struct hdac_bus *bus = hdac->bus;
Vinod Koulb2047e92016-05-12 08:58:55 +05301690 struct hdac_ext_bus *ebus = hbus_to_ebus(bus);
1691 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301692 int err;
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301693
1694 dev_dbg(dev, "Enter: %s\n", __func__);
1695
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301696 /* controller may not have been initialized for the first time */
1697 if (!bus)
1698 return 0;
1699
Vinod Koulb2047e92016-05-12 08:58:55 +05301700 hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05301701 if (!hlink) {
1702 dev_err(dev, "hdac link not found\n");
1703 return -EIO;
1704 }
1705
Vinod Koulb2047e92016-05-12 08:58:55 +05301706 snd_hdac_ext_bus_link_get(ebus, hlink);
1707
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05301708 err = snd_hdac_display_power(bus, true);
1709 if (err < 0) {
1710 dev_err(bus->dev, "Cannot turn on display power on i915\n");
1711 return err;
1712 }
1713
Subhransu S. Prustyab85f5b2016-02-17 21:34:02 +05301714 hdac_hdmi_skl_enable_all_pins(&edev->hdac);
1715 hdac_hdmi_skl_enable_dp12(&edev->hdac);
1716
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301717 /* Power up afg */
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301718 snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE,
1719 AC_PWRST_D0);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301720
1721 return 0;
1722}
1723#else
1724#define hdac_hdmi_runtime_suspend NULL
1725#define hdac_hdmi_runtime_resume NULL
1726#endif
1727
1728static const struct dev_pm_ops hdac_hdmi_pm = {
1729 SET_RUNTIME_PM_OPS(hdac_hdmi_runtime_suspend, hdac_hdmi_runtime_resume, NULL)
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301730 .prepare = hdmi_codec_prepare,
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301731 .complete = hdmi_codec_complete,
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301732};
1733
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301734static const struct hda_device_id hdmi_list[] = {
1735 HDA_CODEC_EXT_ENTRY(0x80862809, 0x100000, "Skylake HDMI", 0),
Jeeja KPe2304802016-03-11 10:12:55 +05301736 HDA_CODEC_EXT_ENTRY(0x8086280a, 0x100000, "Broxton HDMI", 0),
Shreyas NCcc216882016-07-11 22:02:09 +05301737 HDA_CODEC_EXT_ENTRY(0x8086280b, 0x100000, "Kabylake HDMI", 0),
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301738 {}
1739};
1740
1741MODULE_DEVICE_TABLE(hdaudio, hdmi_list);
1742
1743static struct hdac_ext_driver hdmi_driver = {
1744 . hdac = {
1745 .driver = {
1746 .name = "HDMI HDA Codec",
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301747 .pm = &hdac_hdmi_pm,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301748 },
1749 .id_table = hdmi_list,
1750 },
1751 .probe = hdac_hdmi_dev_probe,
1752 .remove = hdac_hdmi_dev_remove,
1753};
1754
1755static int __init hdmi_init(void)
1756{
1757 return snd_hda_ext_driver_register(&hdmi_driver);
1758}
1759
1760static void __exit hdmi_exit(void)
1761{
1762 snd_hda_ext_driver_unregister(&hdmi_driver);
1763}
1764
1765module_init(hdmi_init);
1766module_exit(hdmi_exit);
1767
1768MODULE_LICENSE("GPL v2");
1769MODULE_DESCRIPTION("HDMI HD codec");
1770MODULE_AUTHOR("Samreen Nilofer<samreen.nilofer@intel.com>");
1771MODULE_AUTHOR("Subhransu S. Prusty<subhransu.s.prusty@intel.com>");