blob: 84f7a7a36e4b56a7e413699e517f7287368fc179 [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
Jeeja KP754695f2017-02-06 12:09:14 +053045#define HDA_MAX_PORTS 3
Subhransu S. Prusty148569f2016-02-12 07:46:07 +053046
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053047#define ELD_MAX_SIZE 256
48#define ELD_FIXED_BYTES 20
49
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +053050#define ELD_VER_CEA_861D 2
51#define ELD_VER_PARTIAL 31
52#define ELD_MAX_MNL 16
53
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053054struct hdac_hdmi_cvt_params {
55 unsigned int channels_min;
56 unsigned int channels_max;
57 u32 rates;
58 u64 formats;
59 unsigned int maxbps;
60};
61
62struct hdac_hdmi_cvt {
Subhransu S. Prusty15b91442015-12-09 21:46:10 +053063 struct list_head head;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053064 hda_nid_t nid;
Jeeja KP4a3478d2016-02-12 07:46:06 +053065 const char *name;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053066 struct hdac_hdmi_cvt_params params;
67};
68
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +053069/* Currently only spk_alloc, more to be added */
70struct hdac_hdmi_parsed_eld {
71 u8 spk_alloc;
72};
73
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053074struct hdac_hdmi_eld {
75 bool monitor_present;
76 bool eld_valid;
77 int eld_size;
78 char eld_buffer[ELD_MAX_SIZE];
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +053079 struct hdac_hdmi_parsed_eld info;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053080};
81
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053082struct hdac_hdmi_pin {
Subhransu S. Prusty15b91442015-12-09 21:46:10 +053083 struct list_head head;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053084 hda_nid_t nid;
Jeeja KP2acd8302017-02-06 12:09:18 +053085 bool mst_capable;
Jeeja KP754695f2017-02-06 12:09:14 +053086 struct hdac_hdmi_port *ports;
87 int num_ports;
88 struct hdac_ext_device *edev;
89};
90
91struct hdac_hdmi_port {
Jeeja KPe0e5d3e2017-02-07 19:09:48 +053092 struct list_head head;
Jeeja KP754695f2017-02-06 12:09:14 +053093 int id;
94 struct hdac_hdmi_pin *pin;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +053095 int num_mux_nids;
96 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +053097 struct hdac_hdmi_eld eld;
Jeeja KP0324e512017-02-07 19:09:55 +053098 const char *jack_pin;
99 struct snd_soc_dapm_context *dapm;
100 const char *output_pin;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530101};
102
Jeeja KP4a3478d2016-02-12 07:46:06 +0530103struct hdac_hdmi_pcm {
104 struct list_head head;
105 int pcm_id;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530106 struct list_head port_list;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530107 struct hdac_hdmi_cvt *cvt;
Jeeja KP62490012017-02-07 19:09:49 +0530108 struct snd_soc_jack *jack;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530109 int stream_tag;
110 int channels;
111 int format;
Jeeja KPab1eea12017-01-24 21:49:05 +0530112 bool chmap_set;
113 unsigned char chmap[8]; /* ALSA API channel-map */
114 struct mutex lock;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530115 int jack_event;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530116};
117
Jeeja KP754695f2017-02-06 12:09:14 +0530118struct hdac_hdmi_dai_port_map {
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530119 int dai_id;
Jeeja KP754695f2017-02-06 12:09:14 +0530120 struct hdac_hdmi_port *port;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530121 struct hdac_hdmi_cvt *cvt;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530122};
123
Pradeep Tewani5622bc92017-07-20 11:40:56 +0530124struct hdac_hdmi_drv_data {
125 unsigned int vendor_nid;
126};
127
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530128struct hdac_hdmi_priv {
Jeeja KP754695f2017-02-06 12:09:14 +0530129 struct hdac_hdmi_dai_port_map dai_map[HDA_MAX_CVTS];
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530130 struct list_head pin_list;
131 struct list_head cvt_list;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530132 struct list_head pcm_list;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +0530133 int num_pin;
134 int num_cvt;
Jeeja KP754695f2017-02-06 12:09:14 +0530135 int num_ports;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530136 struct mutex pin_mutex;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530137 struct hdac_chmap chmap;
Pradeep Tewani5622bc92017-07-20 11:40:56 +0530138 struct hdac_hdmi_drv_data *drv_data;
Kuninori Morimoto1e02dac2017-12-20 01:48:13 +0000139 struct snd_soc_dai_driver *dai_drv;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530140};
141
Ughreja, Rakesh Ab09b1c32017-12-01 14:43:17 +0530142#define hdev_to_hdmi_priv(_hdev) ((to_ehdac_device(_hdev))->private_data)
143
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530144static struct hdac_hdmi_pcm *
145hdac_hdmi_get_pcm_from_cvt(struct hdac_hdmi_priv *hdmi,
146 struct hdac_hdmi_cvt *cvt)
147{
148 struct hdac_hdmi_pcm *pcm = NULL;
Jeeja KP1de777f2017-01-10 17:57:48 +0530149
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530150 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
151 if (pcm->cvt == cvt)
152 break;
153 }
154
155 return pcm;
156}
Jeeja KP1de777f2017-01-10 17:57:48 +0530157
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530158static void hdac_hdmi_jack_report(struct hdac_hdmi_pcm *pcm,
159 struct hdac_hdmi_port *port, bool is_connect)
160{
161 struct hdac_ext_device *edev = port->pin->edev;
162
Jeeja KP0324e512017-02-07 19:09:55 +0530163 if (is_connect)
164 snd_soc_dapm_enable_pin(port->dapm, port->jack_pin);
165 else
166 snd_soc_dapm_disable_pin(port->dapm, port->jack_pin);
167
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530168 if (is_connect) {
169 /*
170 * Report Jack connect event when a device is connected
171 * for the first time where same PCM is attached to multiple
172 * ports.
173 */
174 if (pcm->jack_event == 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530175 dev_dbg(&edev->hdev.dev,
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530176 "jack report for pcm=%d\n",
177 pcm->pcm_id);
Jeeja KP62490012017-02-07 19:09:49 +0530178 snd_soc_jack_report(pcm->jack, SND_JACK_AVOUT,
179 SND_JACK_AVOUT);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530180 }
181 pcm->jack_event++;
182 } else {
183 /*
184 * Report Jack disconnect event when a device is disconnected
185 * is the only last connected device when same PCM is attached
186 * to multiple ports.
187 */
188 if (pcm->jack_event == 1)
Jeeja KP62490012017-02-07 19:09:49 +0530189 snd_soc_jack_report(pcm->jack, 0, SND_JACK_AVOUT);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530190 if (pcm->jack_event > 0)
191 pcm->jack_event--;
192 }
Jeeja KP0324e512017-02-07 19:09:55 +0530193
194 snd_soc_dapm_sync(port->dapm);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530195}
196
Jeeja KPfc181b02017-02-07 19:09:45 +0530197/* MST supported verbs */
198/*
199 * Get the no devices that can be connected to a port on the Pin widget.
200 */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530201static int hdac_hdmi_get_port_len(struct hdac_ext_device *edev, hda_nid_t nid)
Jeeja KPfc181b02017-02-07 19:09:45 +0530202{
203 unsigned int caps;
204 unsigned int type, param;
205
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530206 caps = get_wcaps(&edev->hdev, nid);
Jeeja KPfc181b02017-02-07 19:09:45 +0530207 type = get_wcaps_type(caps);
208
209 if (!(caps & AC_WCAP_DIGITAL) || (type != AC_WID_PIN))
210 return 0;
211
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530212 param = snd_hdac_read_parm_uncached(&edev->hdev, nid,
Jeeja KPfc181b02017-02-07 19:09:45 +0530213 AC_PAR_DEVLIST_LEN);
214 if (param == -1)
215 return param;
216
217 return param & AC_DEV_LIST_LEN_MASK;
218}
219
220/*
221 * Get the port entry select on the pin. Return the port entry
222 * id selected on the pin. Return 0 means the first port entry
223 * is selected or MST is not supported.
224 */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530225static int hdac_hdmi_port_select_get(struct hdac_ext_device *edev,
Jeeja KPfc181b02017-02-07 19:09:45 +0530226 struct hdac_hdmi_port *port)
227{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530228 return snd_hdac_codec_read(&edev->hdev, port->pin->nid,
Jeeja KPfc181b02017-02-07 19:09:45 +0530229 0, AC_VERB_GET_DEVICE_SEL, 0);
230}
231
232/*
233 * Sets the selected port entry for the configuring Pin widget verb.
234 * returns error if port set is not equal to port get otherwise success
235 */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530236static int hdac_hdmi_port_select_set(struct hdac_ext_device *edev,
Jeeja KPfc181b02017-02-07 19:09:45 +0530237 struct hdac_hdmi_port *port)
238{
239 int num_ports;
240
241 if (!port->pin->mst_capable)
242 return 0;
243
244 /* AC_PAR_DEVLIST_LEN is 0 based. */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530245 num_ports = hdac_hdmi_get_port_len(edev, port->pin->nid);
Jeeja KPfc181b02017-02-07 19:09:45 +0530246
247 if (num_ports < 0)
248 return -EIO;
249 /*
250 * Device List Length is a 0 based integer value indicating the
251 * number of sink device that a MST Pin Widget can support.
252 */
253 if (num_ports + 1 < port->id)
254 return 0;
255
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530256 snd_hdac_codec_write(&edev->hdev, port->pin->nid, 0,
Jeeja KPfc181b02017-02-07 19:09:45 +0530257 AC_VERB_SET_DEVICE_SEL, port->id);
258
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530259 if (port->id != hdac_hdmi_port_select_get(edev, port))
Jeeja KPfc181b02017-02-07 19:09:45 +0530260 return -EIO;
261
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530262 dev_dbg(&edev->hdev.dev, "Selected the port=%d\n", port->id);
Jeeja KPfc181b02017-02-07 19:09:45 +0530263
264 return 0;
265}
266
Subhransu S. Prusty28890992016-04-14 10:07:34 +0530267static struct hdac_hdmi_pcm *get_hdmi_pcm_from_id(struct hdac_hdmi_priv *hdmi,
268 int pcm_idx)
269{
270 struct hdac_hdmi_pcm *pcm;
271
272 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
273 if (pcm->pcm_id == pcm_idx)
274 return pcm;
275 }
276
277 return NULL;
278}
279
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530280static inline struct hdac_ext_device *to_hda_ext_device(struct device *dev)
281{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530282 struct hdac_device *hdev = dev_to_hdac_dev(dev);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530283
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530284 return to_ehdac_device(hdev);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +0530285}
286
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530287static unsigned int sad_format(const u8 *sad)
288{
289 return ((sad[0] >> 0x3) & 0x1f);
290}
291
292static unsigned int sad_sample_bits_lpcm(const u8 *sad)
293{
294 return (sad[2] & 7);
295}
296
297static int hdac_hdmi_eld_limit_formats(struct snd_pcm_runtime *runtime,
298 void *eld)
299{
300 u64 formats = SNDRV_PCM_FMTBIT_S16;
301 int i;
302 const u8 *sad, *eld_buf = eld;
303
304 sad = drm_eld_sad(eld_buf);
305 if (!sad)
306 goto format_constraint;
307
308 for (i = drm_eld_sad_count(eld_buf); i > 0; i--, sad += 3) {
309 if (sad_format(sad) == 1) { /* AUDIO_CODING_TYPE_LPCM */
310
311 /*
312 * the controller support 20 and 24 bits in 32 bit
313 * container so we set S32
314 */
315 if (sad_sample_bits_lpcm(sad) & 0x6)
316 formats |= SNDRV_PCM_FMTBIT_S32;
317 }
318 }
319
320format_constraint:
321 return snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT,
322 formats);
323
324}
325
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530326static void
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530327hdac_hdmi_set_dip_index(struct hdac_ext_device *edev, hda_nid_t pin_nid,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530328 int packet_index, int byte_index)
329{
330 int val;
331
332 val = (packet_index << 5) | (byte_index & 0x1f);
333
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530334 snd_hdac_codec_write(&edev->hdev, pin_nid, 0,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530335 AC_VERB_SET_HDMI_DIP_INDEX, val);
336}
337
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530338struct dp_audio_infoframe {
339 u8 type; /* 0x84 */
340 u8 len; /* 0x1b */
341 u8 ver; /* 0x11 << 2 */
342
343 u8 CC02_CT47; /* match with HDMI infoframe from this on */
344 u8 SS01_SF24;
345 u8 CXT04;
346 u8 CA;
347 u8 LFEPBL01_LSV36_DM_INH7;
348};
349
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530350static int hdac_hdmi_setup_audio_infoframe(struct hdac_ext_device *edev,
Jeeja KP754695f2017-02-06 12:09:14 +0530351 struct hdac_hdmi_pcm *pcm, struct hdac_hdmi_port *port)
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530352{
353 uint8_t buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AUDIO_INFOFRAME_SIZE];
354 struct hdmi_audio_infoframe frame;
Jeeja KP754695f2017-02-06 12:09:14 +0530355 struct hdac_hdmi_pin *pin = port->pin;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530356 struct dp_audio_infoframe dp_ai;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530357 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KPab1eea12017-01-24 21:49:05 +0530358 struct hdac_hdmi_cvt *cvt = pcm->cvt;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530359 u8 *dip;
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530360 int ret;
361 int i;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530362 const u8 *eld_buf;
363 u8 conn_type;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530364 int channels, ca;
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530365
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530366 ca = snd_hdac_channel_allocation(&edev->hdev, port->eld.info.spk_alloc,
Jeeja KPab1eea12017-01-24 21:49:05 +0530367 pcm->channels, pcm->chmap_set, true, pcm->chmap);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530368
369 channels = snd_hdac_get_active_channels(ca);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530370 hdmi->chmap.ops.set_channel_count(&edev->hdev, cvt->nid, channels);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530371
372 snd_hdac_setup_channel_mapping(&hdmi->chmap, pin->nid, false, ca,
Jeeja KPab1eea12017-01-24 21:49:05 +0530373 pcm->channels, pcm->chmap, pcm->chmap_set);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530374
Jeeja KP754695f2017-02-06 12:09:14 +0530375 eld_buf = port->eld.eld_buffer;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530376 conn_type = drm_eld_get_conn_type(eld_buf);
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530377
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530378 switch (conn_type) {
379 case DRM_ELD_CONN_TYPE_HDMI:
380 hdmi_audio_infoframe_init(&frame);
381
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530382 frame.channels = channels;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530383 frame.channel_allocation = ca;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530384
385 ret = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
386 if (ret < 0)
387 return ret;
388
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530389 break;
390
391 case DRM_ELD_CONN_TYPE_DP:
392 memset(&dp_ai, 0, sizeof(dp_ai));
393 dp_ai.type = 0x84;
394 dp_ai.len = 0x1b;
395 dp_ai.ver = 0x11 << 2;
396 dp_ai.CC02_CT47 = channels - 1;
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530397 dp_ai.CA = ca;
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530398
399 dip = (u8 *)&dp_ai;
400 break;
401
402 default:
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530403 dev_err(&edev->hdev.dev, "Invalid connection type: %d\n",
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530404 conn_type);
405 return -EIO;
406 }
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530407
408 /* stop infoframe transmission */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530409 hdac_hdmi_set_dip_index(edev, pin->nid, 0x0, 0x0);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530410 snd_hdac_codec_write(&edev->hdev, pin->nid, 0,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530411 AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_DISABLE);
412
413
414 /* Fill infoframe. Index auto-incremented */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530415 hdac_hdmi_set_dip_index(edev, pin->nid, 0x0, 0x0);
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530416 if (conn_type == DRM_ELD_CONN_TYPE_HDMI) {
Subhransu S. Prusty391005e2016-03-10 09:04:07 +0530417 for (i = 0; i < sizeof(buffer); i++)
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530418 snd_hdac_codec_write(&edev->hdev, pin->nid, 0,
Subhransu S. Prusty391005e2016-03-10 09:04:07 +0530419 AC_VERB_SET_HDMI_DIP_DATA, buffer[i]);
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530420 } else {
421 for (i = 0; i < sizeof(dp_ai); i++)
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530422 snd_hdac_codec_write(&edev->hdev, pin->nid, 0,
Subhransu S. Prusty478f544e2016-02-12 07:46:09 +0530423 AC_VERB_SET_HDMI_DIP_DATA, dip[i]);
424 }
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530425
426 /* Start infoframe */
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530427 hdac_hdmi_set_dip_index(edev, pin->nid, 0x0, 0x0);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530428 snd_hdac_codec_write(&edev->hdev, pin->nid, 0,
Subhransu S. Prustya657f1d2015-11-10 18:42:09 +0530429 AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_BEST);
430
431 return 0;
432}
433
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530434static int hdac_hdmi_set_tdm_slot(struct snd_soc_dai *dai,
435 unsigned int tx_mask, unsigned int rx_mask,
436 int slots, int slot_width)
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530437{
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530438 struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530439 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +0530440 struct hdac_hdmi_dai_port_map *dai_map;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530441 struct hdac_hdmi_pcm *pcm;
442
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530443 dev_dbg(&edev->hdev.dev, "%s: strm_tag: %d\n", __func__, tx_mask);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530444
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530445 dai_map = &hdmi->dai_map[dai->id];
446
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530447 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530448
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530449 if (pcm)
450 pcm->stream_tag = (tx_mask << 4);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530451
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530452 return 0;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530453}
454
455static int hdac_hdmi_set_hw_params(struct snd_pcm_substream *substream,
456 struct snd_pcm_hw_params *hparams, struct snd_soc_dai *dai)
457{
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530458 struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530459 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +0530460 struct hdac_hdmi_dai_port_map *dai_map;
461 struct hdac_hdmi_port *port;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530462 struct hdac_hdmi_pcm *pcm;
463 int format;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530464
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530465 dai_map = &hdmi->dai_map[dai->id];
Jeeja KP754695f2017-02-06 12:09:14 +0530466 port = dai_map->port;
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530467
Jeeja KP754695f2017-02-06 12:09:14 +0530468 if (!port)
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530469 return -ENODEV;
470
Jeeja KP754695f2017-02-06 12:09:14 +0530471 if ((!port->eld.monitor_present) || (!port->eld.eld_valid)) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530472 dev_err(&edev->hdev.dev,
Jeeja KP754695f2017-02-06 12:09:14 +0530473 "device is not configured for this pin:port%d:%d\n",
474 port->pin->nid, port->id);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530475 return -ENODEV;
476 }
477
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530478 format = snd_hdac_calc_stream_format(params_rate(hparams),
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530479 params_channels(hparams), params_format(hparams),
Jeeja KP66d6bbc2017-03-24 23:10:26 +0530480 dai->driver->playback.sig_bits, 0);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530481
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530482 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
483 if (!pcm)
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530484 return -EIO;
485
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530486 pcm->format = format;
487 pcm->channels = params_channels(hparams);
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530488
489 return 0;
490}
491
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530492static int hdac_hdmi_query_port_connlist(struct hdac_ext_device *edev,
Jeeja KP754695f2017-02-06 12:09:14 +0530493 struct hdac_hdmi_pin *pin,
494 struct hdac_hdmi_port *port)
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530495{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530496 if (!(get_wcaps(&edev->hdev, pin->nid) & AC_WCAP_CONN_LIST)) {
497 dev_warn(&edev->hdev.dev,
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530498 "HDMI: pin %d wcaps %#x does not support connection list\n",
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530499 pin->nid, get_wcaps(&edev->hdev, pin->nid));
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530500 return -EINVAL;
501 }
502
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530503 if (hdac_hdmi_port_select_set(edev, port) < 0)
Jeeja KP1b46ebd2017-02-07 19:09:47 +0530504 return -EIO;
505
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530506 port->num_mux_nids = snd_hdac_get_connections(&edev->hdev, pin->nid,
Jeeja KP754695f2017-02-06 12:09:14 +0530507 port->mux_nids, HDA_MAX_CONNECTIONS);
508 if (port->num_mux_nids == 0)
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530509 dev_warn(&edev->hdev.dev,
Jeeja KP754695f2017-02-06 12:09:14 +0530510 "No connections found for pin:port %d:%d\n",
511 pin->nid, port->id);
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530512
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530513 dev_dbg(&edev->hdev.dev, "num_mux_nids %d for pin:port %d:%d\n",
Jeeja KP754695f2017-02-06 12:09:14 +0530514 port->num_mux_nids, pin->nid, port->id);
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530515
Jeeja KP754695f2017-02-06 12:09:14 +0530516 return port->num_mux_nids;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530517}
518
519/*
Jeeja KP754695f2017-02-06 12:09:14 +0530520 * Query pcm list and return port to which stream is routed.
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530521 *
Jeeja KP754695f2017-02-06 12:09:14 +0530522 * Also query connection list of the pin, to validate the cvt to port map.
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530523 *
Jeeja KP754695f2017-02-06 12:09:14 +0530524 * Same stream rendering to multiple ports simultaneously can be done
525 * possibly, but not supported for now in driver. So return the first port
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530526 * connected.
527 */
Jeeja KP754695f2017-02-06 12:09:14 +0530528static struct hdac_hdmi_port *hdac_hdmi_get_port_from_cvt(
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530529 struct hdac_ext_device *edev,
530 struct hdac_hdmi_priv *hdmi,
531 struct hdac_hdmi_cvt *cvt)
532{
533 struct hdac_hdmi_pcm *pcm;
Jeeja KP754695f2017-02-06 12:09:14 +0530534 struct hdac_hdmi_port *port = NULL;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530535 int ret, i;
536
537 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
538 if (pcm->cvt == cvt) {
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530539 if (list_empty(&pcm->port_list))
540 continue;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530541
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530542 list_for_each_entry(port, &pcm->port_list, head) {
543 mutex_lock(&pcm->lock);
544 ret = hdac_hdmi_query_port_connlist(edev,
545 port->pin, port);
546 mutex_unlock(&pcm->lock);
547 if (ret < 0)
548 continue;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530549
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530550 for (i = 0; i < port->num_mux_nids; i++) {
551 if (port->mux_nids[i] == cvt->nid &&
552 port->eld.monitor_present &&
553 port->eld.eld_valid)
554 return port;
555 }
556 }
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530557 }
558 }
559
560 return NULL;
561}
562
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530563/*
564 * This tries to get a valid pin and set the HW constraints based on the
565 * ELD. Even if a valid pin is not found return success so that device open
566 * doesn't fail.
567 */
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530568static int hdac_hdmi_pcm_open(struct snd_pcm_substream *substream,
569 struct snd_soc_dai *dai)
570{
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530571 struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530572 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +0530573 struct hdac_hdmi_dai_port_map *dai_map;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530574 struct hdac_hdmi_cvt *cvt;
Jeeja KP754695f2017-02-06 12:09:14 +0530575 struct hdac_hdmi_port *port;
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530576 int ret;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530577
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530578 dai_map = &hdmi->dai_map[dai->id];
579
Subhransu S. Prusty148569f2016-02-12 07:46:07 +0530580 cvt = dai_map->cvt;
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530581 port = hdac_hdmi_get_port_from_cvt(edev, hdmi, cvt);
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530582
583 /*
584 * To make PA and other userland happy.
585 * userland scans devices so returning error does not help.
586 */
Jeeja KP754695f2017-02-06 12:09:14 +0530587 if (!port)
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530588 return 0;
Jeeja KP754695f2017-02-06 12:09:14 +0530589 if ((!port->eld.monitor_present) ||
590 (!port->eld.eld_valid)) {
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530591
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530592 dev_warn(&edev->hdev.dev,
Jeeja KP754695f2017-02-06 12:09:14 +0530593 "Failed: present?:%d ELD valid?:%d pin:port: %d:%d\n",
594 port->eld.monitor_present, port->eld.eld_valid,
595 port->pin->nid, port->id);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +0530596
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530597 return 0;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530598 }
599
Jeeja KP754695f2017-02-06 12:09:14 +0530600 dai_map->port = port;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530601
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530602 ret = hdac_hdmi_eld_limit_formats(substream->runtime,
Jeeja KP754695f2017-02-06 12:09:14 +0530603 port->eld.eld_buffer);
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530604 if (ret < 0)
605 return ret;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530606
Subhransu S. Prusty2428bca2016-02-12 07:46:02 +0530607 return snd_pcm_hw_constraint_eld(substream->runtime,
Jeeja KP754695f2017-02-06 12:09:14 +0530608 port->eld.eld_buffer);
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530609}
610
611static void hdac_hdmi_pcm_close(struct snd_pcm_substream *substream,
612 struct snd_soc_dai *dai)
613{
Ughreja, Rakesh A72bc39c2017-12-01 14:43:18 +0530614 struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530615 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +0530616 struct hdac_hdmi_dai_port_map *dai_map;
Jeeja KPab1eea12017-01-24 21:49:05 +0530617 struct hdac_hdmi_pcm *pcm;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530618
619 dai_map = &hdmi->dai_map[dai->id];
620
Jeeja KPab1eea12017-01-24 21:49:05 +0530621 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530622
Jeeja KPab1eea12017-01-24 21:49:05 +0530623 if (pcm) {
624 mutex_lock(&pcm->lock);
625 pcm->chmap_set = false;
626 memset(pcm->chmap, 0, sizeof(pcm->chmap));
627 pcm->channels = 0;
628 mutex_unlock(&pcm->lock);
Subhransu S. Prusty54dfa1e2016-02-17 21:34:00 +0530629 }
Jeeja KPab1eea12017-01-24 21:49:05 +0530630
Jeeja KP754695f2017-02-06 12:09:14 +0530631 if (dai_map->port)
632 dai_map->port = NULL;
Subhransu S. Prustyb0362ad2015-11-10 18:42:08 +0530633}
634
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530635static int
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530636hdac_hdmi_query_cvt_params(struct hdac_device *hdev, struct hdac_hdmi_cvt *cvt)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530637{
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530638 unsigned int chans;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530639 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530640 int err;
641
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530642 chans = get_wcaps(hdev, cvt->nid);
Subhransu S. Prustybcced702016-04-14 10:07:30 +0530643 chans = get_wcaps_channels(chans);
644
645 cvt->params.channels_min = 2;
646
647 cvt->params.channels_max = chans;
648 if (chans > hdmi->chmap.channels_max)
649 hdmi->chmap.channels_max = chans;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530650
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530651 err = snd_hdac_query_supported_pcm(hdev, cvt->nid,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530652 &cvt->params.rates,
653 &cvt->params.formats,
654 &cvt->params.maxbps);
655 if (err < 0)
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530656 dev_err(&hdev->dev,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530657 "Failed to query pcm params for nid %d: %d\n",
658 cvt->nid, err);
659
660 return err;
661}
662
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530663static int hdac_hdmi_fill_widget_info(struct device *dev,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530664 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_type id,
665 void *priv, const char *wname, const char *stream,
666 struct snd_kcontrol_new *wc, int numkc,
667 int (*event)(struct snd_soc_dapm_widget *,
668 struct snd_kcontrol *, int), unsigned short event_flags)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530669{
670 w->id = id;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530671 w->name = devm_kstrdup(dev, wname, GFP_KERNEL);
672 if (!w->name)
673 return -ENOMEM;
674
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530675 w->sname = stream;
676 w->reg = SND_SOC_NOPM;
677 w->shift = 0;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530678 w->kcontrol_news = wc;
679 w->num_kcontrols = numkc;
680 w->priv = priv;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530681 w->event = event;
682 w->event_flags = event_flags;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530683
684 return 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530685}
686
687static void hdac_hdmi_fill_route(struct snd_soc_dapm_route *route,
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530688 const char *sink, const char *control, const char *src,
689 int (*handler)(struct snd_soc_dapm_widget *src,
690 struct snd_soc_dapm_widget *sink))
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530691{
692 route->sink = sink;
693 route->source = src;
694 route->control = control;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530695 route->connected = handler;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530696}
697
Jeeja KP4a3478d2016-02-12 07:46:06 +0530698static struct hdac_hdmi_pcm *hdac_hdmi_get_pcm(struct hdac_ext_device *edev,
Jeeja KP754695f2017-02-06 12:09:14 +0530699 struct hdac_hdmi_port *port)
Jeeja KP4a3478d2016-02-12 07:46:06 +0530700{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530701 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP4a3478d2016-02-12 07:46:06 +0530702 struct hdac_hdmi_pcm *pcm = NULL;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530703 struct hdac_hdmi_port *p;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530704
705 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530706 if (list_empty(&pcm->port_list))
Jeeja KP754695f2017-02-06 12:09:14 +0530707 continue;
708
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530709 list_for_each_entry(p, &pcm->port_list, head) {
710 if (p->id == port->id && port->pin == p->pin)
711 return pcm;
712 }
Jeeja KP4a3478d2016-02-12 07:46:06 +0530713 }
714
715 return NULL;
716}
717
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530718static void hdac_hdmi_set_power_state(struct hdac_ext_device *edev,
719 hda_nid_t nid, unsigned int pwr_state)
720{
Abhijeet Kumar753597f2018-02-15 14:05:38 +0530721 int count;
722 unsigned int state;
723
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530724 if (get_wcaps(&edev->hdev, nid) & AC_WCAP_POWER) {
Mark Brown0b9751c2018-02-15 17:14:16 +0000725 if (!snd_hdac_check_power_state(&edev->hdev, nid, pwr_state)) {
Abhijeet Kumar753597f2018-02-15 14:05:38 +0530726 for (count = 0; count < 10; count++) {
Mark Brown0b9751c2018-02-15 17:14:16 +0000727 snd_hdac_codec_read(&edev->hdev, nid, 0,
Abhijeet Kumar753597f2018-02-15 14:05:38 +0530728 AC_VERB_SET_POWER_STATE,
729 pwr_state);
Mark Brown0b9751c2018-02-15 17:14:16 +0000730 state = snd_hdac_sync_power_state(&edev->hdev,
Abhijeet Kumar753597f2018-02-15 14:05:38 +0530731 nid, pwr_state);
732 if (!(state & AC_PWRST_ERROR))
733 break;
734 }
735 }
736
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530737 }
738}
739
740static void hdac_hdmi_set_amp(struct hdac_ext_device *edev,
741 hda_nid_t nid, int val)
742{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530743 if (get_wcaps(&edev->hdev, nid) & AC_WCAP_OUT_AMP)
744 snd_hdac_codec_write(&edev->hdev, nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530745 AC_VERB_SET_AMP_GAIN_MUTE, val);
746}
747
748
749static int hdac_hdmi_pin_output_widget_event(struct snd_soc_dapm_widget *w,
750 struct snd_kcontrol *kc, int event)
751{
Jeeja KP754695f2017-02-06 12:09:14 +0530752 struct hdac_hdmi_port *port = w->priv;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530753 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
754 struct hdac_hdmi_pcm *pcm;
755
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530756 dev_dbg(&edev->hdev.dev, "%s: widget: %s event: %x\n",
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530757 __func__, w->name, event);
758
Jeeja KP754695f2017-02-06 12:09:14 +0530759 pcm = hdac_hdmi_get_pcm(edev, port);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530760 if (!pcm)
761 return -EIO;
762
Jeeja KP1b46ebd2017-02-07 19:09:47 +0530763 /* set the device if pin is mst_capable */
764 if (hdac_hdmi_port_select_set(edev, port) < 0)
765 return -EIO;
766
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530767 switch (event) {
768 case SND_SOC_DAPM_PRE_PMU:
Jeeja KP754695f2017-02-06 12:09:14 +0530769 hdac_hdmi_set_power_state(edev, port->pin->nid, AC_PWRST_D0);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530770
771 /* Enable out path for this pin widget */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530772 snd_hdac_codec_write(&edev->hdev, port->pin->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530773 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
774
Jeeja KP754695f2017-02-06 12:09:14 +0530775 hdac_hdmi_set_amp(edev, port->pin->nid, AMP_OUT_UNMUTE);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530776
Jeeja KP754695f2017-02-06 12:09:14 +0530777 return hdac_hdmi_setup_audio_infoframe(edev, pcm, port);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530778
779 case SND_SOC_DAPM_POST_PMD:
Jeeja KP754695f2017-02-06 12:09:14 +0530780 hdac_hdmi_set_amp(edev, port->pin->nid, AMP_OUT_MUTE);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530781
782 /* Disable out path for this pin widget */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530783 snd_hdac_codec_write(&edev->hdev, port->pin->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530784 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
785
Jeeja KP754695f2017-02-06 12:09:14 +0530786 hdac_hdmi_set_power_state(edev, port->pin->nid, AC_PWRST_D3);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530787 break;
788
789 }
790
791 return 0;
792}
793
794static int hdac_hdmi_cvt_output_widget_event(struct snd_soc_dapm_widget *w,
795 struct snd_kcontrol *kc, int event)
796{
797 struct hdac_hdmi_cvt *cvt = w->priv;
798 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530799 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530800 struct hdac_hdmi_pcm *pcm;
801
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530802 dev_dbg(&edev->hdev.dev, "%s: widget: %s event: %x\n",
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530803 __func__, w->name, event);
804
805 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, cvt);
806 if (!pcm)
807 return -EIO;
808
809 switch (event) {
810 case SND_SOC_DAPM_PRE_PMU:
811 hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D0);
812
813 /* Enable transmission */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530814 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530815 AC_VERB_SET_DIGI_CONVERT_1, 1);
816
817 /* Category Code (CC) to zero */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530818 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530819 AC_VERB_SET_DIGI_CONVERT_2, 0);
820
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530821 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530822 AC_VERB_SET_CHANNEL_STREAMID, pcm->stream_tag);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530823 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530824 AC_VERB_SET_STREAM_FORMAT, pcm->format);
825 break;
826
827 case SND_SOC_DAPM_POST_PMD:
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530828 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530829 AC_VERB_SET_CHANNEL_STREAMID, 0);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530830 snd_hdac_codec_write(&edev->hdev, cvt->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530831 AC_VERB_SET_STREAM_FORMAT, 0);
832
833 hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D3);
834 break;
835
836 }
837
838 return 0;
839}
840
841static int hdac_hdmi_pin_mux_widget_event(struct snd_soc_dapm_widget *w,
842 struct snd_kcontrol *kc, int event)
843{
Jeeja KP754695f2017-02-06 12:09:14 +0530844 struct hdac_hdmi_port *port = w->priv;
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530845 struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev);
846 int mux_idx;
847
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530848 dev_dbg(&edev->hdev.dev, "%s: widget: %s event: %x\n",
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530849 __func__, w->name, event);
850
851 if (!kc)
852 kc = w->kcontrols[0];
853
854 mux_idx = dapm_kcontrol_get_value(kc);
Jeeja KP1b46ebd2017-02-07 19:09:47 +0530855
856 /* set the device if pin is mst_capable */
857 if (hdac_hdmi_port_select_set(edev, port) < 0)
858 return -EIO;
859
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530860 if (mux_idx > 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530861 snd_hdac_codec_write(&edev->hdev, port->pin->nid, 0,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530862 AC_VERB_SET_CONNECT_SEL, (mux_idx - 1));
863 }
864
865 return 0;
866}
867
Jeeja KP4a3478d2016-02-12 07:46:06 +0530868/*
869 * Based on user selection, map the PINs with the PCMs.
870 */
Jeeja KP754695f2017-02-06 12:09:14 +0530871static int hdac_hdmi_set_pin_port_mux(struct snd_kcontrol *kcontrol,
Jeeja KP4a3478d2016-02-12 07:46:06 +0530872 struct snd_ctl_elem_value *ucontrol)
873{
874 int ret;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530875 struct hdac_hdmi_port *p, *p_next;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530876 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
877 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
878 struct snd_soc_dapm_context *dapm = w->dapm;
Jeeja KP754695f2017-02-06 12:09:14 +0530879 struct hdac_hdmi_port *port = w->priv;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530880 struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530881 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP4a3478d2016-02-12 07:46:06 +0530882 struct hdac_hdmi_pcm *pcm = NULL;
883 const char *cvt_name = e->texts[ucontrol->value.enumerated.item[0]];
884
885 ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
886 if (ret < 0)
887 return ret;
888
Jeeja KP754695f2017-02-06 12:09:14 +0530889 if (port == NULL)
890 return -EINVAL;
891
Jeeja KP4a3478d2016-02-12 07:46:06 +0530892 mutex_lock(&hdmi->pin_mutex);
893 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530894 if (list_empty(&pcm->port_list))
895 continue;
Jeeja KP4a3478d2016-02-12 07:46:06 +0530896
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530897 list_for_each_entry_safe(p, p_next, &pcm->port_list, head) {
898 if (p == port && p->id == port->id &&
899 p->pin == port->pin) {
900 hdac_hdmi_jack_report(pcm, port, false);
901 list_del(&p->head);
Jeeja KP4a3478d2016-02-12 07:46:06 +0530902 }
Jeeja KPe0e5d3e2017-02-07 19:09:48 +0530903 }
904 }
905
906 /*
907 * Jack status is not reported during device probe as the
908 * PCMs are not registered by then. So report it here.
909 */
910 list_for_each_entry(pcm, &hdmi->pcm_list, head) {
911 if (!strcmp(cvt_name, pcm->cvt->name)) {
912 list_add_tail(&port->head, &pcm->port_list);
913 if (port->eld.monitor_present && port->eld.eld_valid) {
914 hdac_hdmi_jack_report(pcm, port, true);
915 mutex_unlock(&hdmi->pin_mutex);
916 return ret;
917 }
Jeeja KP4a3478d2016-02-12 07:46:06 +0530918 }
919 }
920 mutex_unlock(&hdmi->pin_mutex);
921
922 return ret;
923}
924
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530925/*
926 * Ideally the Mux inputs should be based on the num_muxs enumerated, but
927 * the display driver seem to be programming the connection list for the pin
928 * widget runtime.
929 *
930 * So programming all the possible inputs for the mux, the user has to take
931 * care of selecting the right one and leaving all other inputs selected to
932 * "NONE"
933 */
Jeeja KP754695f2017-02-06 12:09:14 +0530934static int hdac_hdmi_create_pin_port_muxs(struct hdac_ext_device *edev,
935 struct hdac_hdmi_port *port,
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530936 struct snd_soc_dapm_widget *widget,
937 const char *widget_name)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530938{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530939 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +0530940 struct hdac_hdmi_pin *pin = port->pin;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530941 struct snd_kcontrol_new *kc;
942 struct hdac_hdmi_cvt *cvt;
943 struct soc_enum *se;
944 char kc_name[NAME_SIZE];
945 char mux_items[NAME_SIZE];
946 /* To hold inputs to the Pin mux */
947 char *items[HDA_MAX_CONNECTIONS];
948 int i = 0;
949 int num_items = hdmi->num_cvt + 1;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530950
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530951 kc = devm_kzalloc(&edev->hdev.dev, sizeof(*kc), GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530952 if (!kc)
953 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530954
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530955 se = devm_kzalloc(&edev->hdev.dev, sizeof(*se), GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530956 if (!se)
957 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530958
Subhransu S. Prusty70e97a22017-11-07 16:16:24 +0530959 snprintf(kc_name, NAME_SIZE, "Pin %d port %d Input",
960 pin->nid, port->id);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530961 kc->name = devm_kstrdup(&edev->hdev.dev, kc_name, GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530962 if (!kc->name)
963 return -ENOMEM;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +0530964
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530965 kc->private_value = (long)se;
966 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
967 kc->access = 0;
968 kc->info = snd_soc_info_enum_double;
Jeeja KP754695f2017-02-06 12:09:14 +0530969 kc->put = hdac_hdmi_set_pin_port_mux;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530970 kc->get = snd_soc_dapm_get_enum_double;
971
972 se->reg = SND_SOC_NOPM;
973
974 /* enum texts: ["NONE", "cvt #", "cvt #", ...] */
975 se->items = num_items;
976 se->mask = roundup_pow_of_two(se->items) - 1;
977
978 sprintf(mux_items, "NONE");
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530979 items[i] = devm_kstrdup(&edev->hdev.dev, mux_items, GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530980 if (!items[i])
981 return -ENOMEM;
982
983 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
984 i++;
985 sprintf(mux_items, "cvt %d", cvt->nid);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530986 items[i] = devm_kstrdup(&edev->hdev.dev, mux_items, GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530987 if (!items[i])
988 return -ENOMEM;
989 }
990
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530991 se->texts = devm_kmemdup(&edev->hdev.dev, items,
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +0530992 (num_items * sizeof(char *)), GFP_KERNEL);
993 if (!se->texts)
994 return -ENOMEM;
995
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +0530996 return hdac_hdmi_fill_widget_info(&edev->hdev.dev, widget,
Jeeja KP754695f2017-02-06 12:09:14 +0530997 snd_soc_dapm_mux, port, widget_name, NULL, kc, 1,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +0530998 hdac_hdmi_pin_mux_widget_event,
999 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_REG);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301000}
1001
1002/* Add cvt <- input <- mux route map */
1003static void hdac_hdmi_add_pinmux_cvt_route(struct hdac_ext_device *edev,
1004 struct snd_soc_dapm_widget *widgets,
1005 struct snd_soc_dapm_route *route, int rindex)
1006{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301007 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301008 const struct snd_kcontrol_new *kc;
1009 struct soc_enum *se;
Jeeja KP754695f2017-02-06 12:09:14 +05301010 int mux_index = hdmi->num_cvt + hdmi->num_ports;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301011 int i, j;
1012
Jeeja KP754695f2017-02-06 12:09:14 +05301013 for (i = 0; i < hdmi->num_ports; i++) {
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301014 kc = widgets[mux_index].kcontrol_news;
1015 se = (struct soc_enum *)kc->private_value;
1016 for (j = 0; j < hdmi->num_cvt; j++) {
1017 hdac_hdmi_fill_route(&route[rindex],
1018 widgets[mux_index].name,
1019 se->texts[j + 1],
1020 widgets[j].name, NULL);
1021
1022 rindex++;
1023 }
1024
1025 mux_index++;
1026 }
1027}
1028
1029/*
1030 * Widgets are added in the below sequence
1031 * Converter widgets for num converters enumerated
Jeeja KP754695f2017-02-06 12:09:14 +05301032 * Pin-port widgets for num ports for Pins enumerated
1033 * Pin-port mux widgets to represent connenction list of pin widget
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301034 *
Jeeja KP754695f2017-02-06 12:09:14 +05301035 * For each port, one Mux and One output widget is added
1036 * Total widgets elements = num_cvt + (num_ports * 2);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301037 *
1038 * Routes are added as below:
Jeeja KP754695f2017-02-06 12:09:14 +05301039 * pin-port mux -> pin (based on num_ports)
1040 * cvt -> "Input sel control" -> pin-port_mux
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301041 *
1042 * Total route elements:
Jeeja KP754695f2017-02-06 12:09:14 +05301043 * num_ports + (pin_muxes * num_cvt)
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301044 */
1045static int create_fill_widget_route_map(struct snd_soc_dapm_context *dapm)
1046{
1047 struct snd_soc_dapm_widget *widgets;
1048 struct snd_soc_dapm_route *route;
1049 struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301050 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Kuninori Morimoto1e02dac2017-12-20 01:48:13 +00001051 struct snd_soc_dai_driver *dai_drv = hdmi->dai_drv;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301052 char widget_name[NAME_SIZE];
1053 struct hdac_hdmi_cvt *cvt;
1054 struct hdac_hdmi_pin *pin;
Jeeja KP754695f2017-02-06 12:09:14 +05301055 int ret, i = 0, num_routes = 0, j;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301056
1057 if (list_empty(&hdmi->cvt_list) || list_empty(&hdmi->pin_list))
1058 return -EINVAL;
1059
Jeeja KP754695f2017-02-06 12:09:14 +05301060 widgets = devm_kzalloc(dapm->dev, (sizeof(*widgets) *
1061 ((2 * hdmi->num_ports) + hdmi->num_cvt)),
1062 GFP_KERNEL);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301063
1064 if (!widgets)
1065 return -ENOMEM;
1066
1067 /* DAPM widgets to represent each converter widget */
1068 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
1069 sprintf(widget_name, "Converter %d", cvt->nid);
1070 ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i],
Jeeja KPc9bfb5d2017-01-24 21:49:03 +05301071 snd_soc_dapm_aif_in, cvt,
1072 widget_name, dai_drv[i].playback.stream_name, NULL, 0,
1073 hdac_hdmi_cvt_output_widget_event,
1074 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD);
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301075 if (ret < 0)
1076 return ret;
1077 i++;
1078 }
1079
1080 list_for_each_entry(pin, &hdmi->pin_list, head) {
Jeeja KP754695f2017-02-06 12:09:14 +05301081 for (j = 0; j < pin->num_ports; j++) {
1082 sprintf(widget_name, "hif%d-%d Output",
1083 pin->nid, pin->ports[j].id);
1084 ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i],
1085 snd_soc_dapm_output, &pin->ports[j],
1086 widget_name, NULL, NULL, 0,
1087 hdac_hdmi_pin_output_widget_event,
1088 SND_SOC_DAPM_PRE_PMU |
1089 SND_SOC_DAPM_POST_PMD);
1090 if (ret < 0)
1091 return ret;
Jeeja KP0324e512017-02-07 19:09:55 +05301092 pin->ports[j].output_pin = widgets[i].name;
Jeeja KP754695f2017-02-06 12:09:14 +05301093 i++;
1094 }
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301095 }
1096
1097 /* DAPM widgets to represent the connection list to pin widget */
1098 list_for_each_entry(pin, &hdmi->pin_list, head) {
Jeeja KP754695f2017-02-06 12:09:14 +05301099 for (j = 0; j < pin->num_ports; j++) {
1100 sprintf(widget_name, "Pin%d-Port%d Mux",
1101 pin->nid, pin->ports[j].id);
1102 ret = hdac_hdmi_create_pin_port_muxs(edev,
1103 &pin->ports[j], &widgets[i],
1104 widget_name);
1105 if (ret < 0)
1106 return ret;
1107 i++;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301108
Jeeja KP754695f2017-02-06 12:09:14 +05301109 /* For cvt to pin_mux mapping */
1110 num_routes += hdmi->num_cvt;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301111
Jeeja KP754695f2017-02-06 12:09:14 +05301112 /* For pin_mux to pin mapping */
1113 num_routes++;
1114 }
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301115 }
1116
1117 route = devm_kzalloc(dapm->dev, (sizeof(*route) * num_routes),
1118 GFP_KERNEL);
1119 if (!route)
1120 return -ENOMEM;
1121
1122 i = 0;
1123 /* Add pin <- NULL <- mux route map */
1124 list_for_each_entry(pin, &hdmi->pin_list, head) {
Jeeja KP754695f2017-02-06 12:09:14 +05301125 for (j = 0; j < pin->num_ports; j++) {
1126 int sink_index = i + hdmi->num_cvt;
1127 int src_index = sink_index + pin->num_ports *
1128 hdmi->num_pin;
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301129
Jeeja KP754695f2017-02-06 12:09:14 +05301130 hdac_hdmi_fill_route(&route[i],
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301131 widgets[sink_index].name, NULL,
1132 widgets[src_index].name, NULL);
Jeeja KP754695f2017-02-06 12:09:14 +05301133 i++;
1134 }
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301135 }
1136
1137 hdac_hdmi_add_pinmux_cvt_route(edev, widgets, route, i);
1138
1139 snd_soc_dapm_new_controls(dapm, widgets,
Jeeja KP754695f2017-02-06 12:09:14 +05301140 ((2 * hdmi->num_ports) + hdmi->num_cvt));
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301141
1142 snd_soc_dapm_add_routes(dapm, route, num_routes);
1143 snd_soc_dapm_new_widgets(dapm->card);
1144
1145 return 0;
1146
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301147}
1148
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301149static int hdac_hdmi_init_dai_map(struct hdac_ext_device *edev)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301150{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301151 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +05301152 struct hdac_hdmi_dai_port_map *dai_map;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301153 struct hdac_hdmi_cvt *cvt;
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301154 int dai_id = 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301155
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301156 if (list_empty(&hdmi->cvt_list))
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301157 return -EINVAL;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301158
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301159 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
1160 dai_map = &hdmi->dai_map[dai_id];
1161 dai_map->dai_id = dai_id;
1162 dai_map->cvt = cvt;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301163
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301164 dai_id++;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301165
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301166 if (dai_id == HDA_MAX_CVTS) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301167 dev_warn(&edev->hdev.dev,
Subhransu S. Prusty148569f2016-02-12 07:46:07 +05301168 "Max dais supported: %d\n", dai_id);
1169 break;
1170 }
1171 }
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301172
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301173 return 0;
1174}
1175
1176static int hdac_hdmi_add_cvt(struct hdac_ext_device *edev, hda_nid_t nid)
1177{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301178 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301179 struct hdac_hdmi_cvt *cvt;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301180 char name[NAME_SIZE];
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301181
1182 cvt = kzalloc(sizeof(*cvt), GFP_KERNEL);
1183 if (!cvt)
1184 return -ENOMEM;
1185
1186 cvt->nid = nid;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301187 sprintf(name, "cvt %d", cvt->nid);
1188 cvt->name = kstrdup(name, GFP_KERNEL);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301189
1190 list_add_tail(&cvt->head, &hdmi->cvt_list);
1191 hdmi->num_cvt++;
1192
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301193 return hdac_hdmi_query_cvt_params(&edev->hdev, cvt);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301194}
1195
Jeeja KP754695f2017-02-06 12:09:14 +05301196static int hdac_hdmi_parse_eld(struct hdac_ext_device *edev,
1197 struct hdac_hdmi_port *port)
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +05301198{
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301199 unsigned int ver, mnl;
1200
Jeeja KP754695f2017-02-06 12:09:14 +05301201 ver = (port->eld.eld_buffer[DRM_ELD_VER] & DRM_ELD_VER_MASK)
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301202 >> DRM_ELD_VER_SHIFT;
1203
1204 if (ver != ELD_VER_CEA_861D && ver != ELD_VER_PARTIAL) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301205 dev_err(&edev->hdev.dev, "HDMI: Unknown ELD version %d\n", ver);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301206 return -EINVAL;
1207 }
1208
Jeeja KP754695f2017-02-06 12:09:14 +05301209 mnl = (port->eld.eld_buffer[DRM_ELD_CEA_EDID_VER_MNL] &
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301210 DRM_ELD_MNL_MASK) >> DRM_ELD_MNL_SHIFT;
1211
1212 if (mnl > ELD_MAX_MNL) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301213 dev_err(&edev->hdev.dev, "HDMI: MNL Invalid %d\n", mnl);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301214 return -EINVAL;
1215 }
1216
Jeeja KP754695f2017-02-06 12:09:14 +05301217 port->eld.info.spk_alloc = port->eld.eld_buffer[DRM_ELD_SPEAKER];
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301218
1219 return 0;
Subhransu S. Prustyb7756ed2016-04-14 10:07:28 +05301220}
1221
Jeeja KP754695f2017-02-06 12:09:14 +05301222static void hdac_hdmi_present_sense(struct hdac_hdmi_pin *pin,
1223 struct hdac_hdmi_port *port)
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301224{
1225 struct hdac_ext_device *edev = pin->edev;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301226 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301227 struct hdac_hdmi_pcm *pcm;
Jeeja KP754695f2017-02-06 12:09:14 +05301228 int size = 0;
Jeeja KP2acd8302017-02-06 12:09:18 +05301229 int port_id = -1;
Jeeja KP754695f2017-02-06 12:09:14 +05301230
1231 if (!hdmi)
1232 return;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301233
Jeeja KP2acd8302017-02-06 12:09:18 +05301234 /*
1235 * In case of non MST pin, get_eld info API expectes port
1236 * to be -1.
1237 */
Jeeja KP4a3478d2016-02-12 07:46:06 +05301238 mutex_lock(&hdmi->pin_mutex);
Jeeja KP754695f2017-02-06 12:09:14 +05301239 port->eld.monitor_present = false;
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301240
Jeeja KP2acd8302017-02-06 12:09:18 +05301241 if (pin->mst_capable)
1242 port_id = port->id;
1243
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301244 size = snd_hdac_acomp_get_eld(&edev->hdev, pin->nid, port_id,
Jeeja KP754695f2017-02-06 12:09:14 +05301245 &port->eld.monitor_present,
1246 port->eld.eld_buffer,
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301247 ELD_MAX_SIZE);
1248
1249 if (size > 0) {
1250 size = min(size, ELD_MAX_SIZE);
Jeeja KP754695f2017-02-06 12:09:14 +05301251 if (hdac_hdmi_parse_eld(edev, port) < 0)
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301252 size = -EINVAL;
1253 }
1254
1255 if (size > 0) {
Jeeja KP754695f2017-02-06 12:09:14 +05301256 port->eld.eld_valid = true;
1257 port->eld.eld_size = size;
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301258 } else {
Jeeja KP754695f2017-02-06 12:09:14 +05301259 port->eld.eld_valid = false;
1260 port->eld.eld_size = 0;
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301261 }
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301262
Jeeja KP754695f2017-02-06 12:09:14 +05301263 pcm = hdac_hdmi_get_pcm(edev, port);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301264
Jeeja KP754695f2017-02-06 12:09:14 +05301265 if (!port->eld.monitor_present || !port->eld.eld_valid) {
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301266
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301267 dev_err(&edev->hdev.dev, "%s: disconnect for pin:port %d:%d\n",
Jeeja KP754695f2017-02-06 12:09:14 +05301268 __func__, pin->nid, port->id);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301269
1270 /*
1271 * PCMs are not registered during device probe, so don't
1272 * report jack here. It will be done in usermode mux
1273 * control select.
1274 */
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301275 if (pcm)
1276 hdac_hdmi_jack_report(pcm, port, false);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301277
1278 mutex_unlock(&hdmi->pin_mutex);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301279 return;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301280 }
1281
Jeeja KP754695f2017-02-06 12:09:14 +05301282 if (port->eld.monitor_present && port->eld.eld_valid) {
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301283 if (pcm)
1284 hdac_hdmi_jack_report(pcm, port, true);
Sandeep Tayalf6fa11a2017-01-18 21:34:41 +05301285
1286 print_hex_dump_debug("ELD: ", DUMP_PREFIX_OFFSET, 16, 1,
Jeeja KP754695f2017-02-06 12:09:14 +05301287 port->eld.eld_buffer, port->eld.eld_size, false);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301288
Jeeja KP754695f2017-02-06 12:09:14 +05301289 }
Jeeja KP4a3478d2016-02-12 07:46:06 +05301290 mutex_unlock(&hdmi->pin_mutex);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301291}
1292
Jeeja KP754695f2017-02-06 12:09:14 +05301293static int hdac_hdmi_add_ports(struct hdac_hdmi_priv *hdmi,
1294 struct hdac_hdmi_pin *pin)
1295{
1296 struct hdac_hdmi_port *ports;
1297 int max_ports = HDA_MAX_PORTS;
1298 int i;
1299
1300 /*
1301 * FIXME: max_port may vary for each platform, so pass this as
1302 * as driver data or query from i915 interface when this API is
1303 * implemented.
1304 */
1305
1306 ports = kcalloc(max_ports, sizeof(*ports), GFP_KERNEL);
1307 if (!ports)
1308 return -ENOMEM;
1309
1310 for (i = 0; i < max_ports; i++) {
1311 ports[i].id = i;
1312 ports[i].pin = pin;
1313 }
1314 pin->ports = ports;
1315 pin->num_ports = max_ports;
1316 return 0;
1317}
1318
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301319static int hdac_hdmi_add_pin(struct hdac_ext_device *edev, hda_nid_t nid)
1320{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301321 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301322 struct hdac_hdmi_pin *pin;
Jeeja KP754695f2017-02-06 12:09:14 +05301323 int ret;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301324
1325 pin = kzalloc(sizeof(*pin), GFP_KERNEL);
1326 if (!pin)
1327 return -ENOMEM;
1328
1329 pin->nid = nid;
Jeeja KP2acd8302017-02-06 12:09:18 +05301330 pin->mst_capable = false;
Jeeja KP754695f2017-02-06 12:09:14 +05301331 pin->edev = edev;
1332 ret = hdac_hdmi_add_ports(hdmi, pin);
1333 if (ret < 0)
1334 return ret;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301335
1336 list_add_tail(&pin->head, &hdmi->pin_list);
1337 hdmi->num_pin++;
Jeeja KP754695f2017-02-06 12:09:14 +05301338 hdmi->num_ports += pin->num_ports;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301339
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301340 return 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301341}
1342
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301343#define INTEL_VENDOR_NID 0x08
Pradeep Tewani5622bc92017-07-20 11:40:56 +05301344#define INTEL_GLK_VENDOR_NID 0x0b
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301345#define INTEL_GET_VENDOR_VERB 0xf81
1346#define INTEL_SET_VENDOR_VERB 0x781
1347#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
1348#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
1349
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301350static void hdac_hdmi_skl_enable_all_pins(struct hdac_device *hdev)
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301351{
1352 unsigned int vendor_param;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301353 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Pradeep Tewani5622bc92017-07-20 11:40:56 +05301354 unsigned int vendor_nid = hdmi->drv_data->vendor_nid;
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301355
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301356 vendor_param = snd_hdac_codec_read(hdev, vendor_nid, 0,
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301357 INTEL_GET_VENDOR_VERB, 0);
1358 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
1359 return;
1360
1361 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301362 vendor_param = snd_hdac_codec_read(hdev, vendor_nid, 0,
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301363 INTEL_SET_VENDOR_VERB, vendor_param);
1364 if (vendor_param == -1)
1365 return;
1366}
1367
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301368static void hdac_hdmi_skl_enable_dp12(struct hdac_device *hdev)
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301369{
1370 unsigned int vendor_param;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301371 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Pradeep Tewani5622bc92017-07-20 11:40:56 +05301372 unsigned int vendor_nid = hdmi->drv_data->vendor_nid;
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301373
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301374 vendor_param = snd_hdac_codec_read(hdev, vendor_nid, 0,
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301375 INTEL_GET_VENDOR_VERB, 0);
1376 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
1377 return;
1378
1379 /* enable DP1.2 mode */
1380 vendor_param |= INTEL_EN_DP12;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301381 vendor_param = snd_hdac_codec_read(hdev, vendor_nid, 0,
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301382 INTEL_SET_VENDOR_VERB, vendor_param);
1383 if (vendor_param == -1)
1384 return;
1385
1386}
1387
Gustavo A. R. Silva61b3b3c2017-07-13 15:38:38 -05001388static const struct snd_soc_dai_ops hdmi_dai_ops = {
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301389 .startup = hdac_hdmi_pcm_open,
1390 .shutdown = hdac_hdmi_pcm_close,
1391 .hw_params = hdac_hdmi_set_hw_params,
Jeeja KPc9bfb5d2017-01-24 21:49:03 +05301392 .set_tdm_slot = hdac_hdmi_set_tdm_slot,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301393};
1394
1395/*
1396 * Each converter can support a stream independently. So a dai is created
1397 * based on the number of converter queried.
1398 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301399static int hdac_hdmi_create_dais(struct hdac_device *hdev,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301400 struct snd_soc_dai_driver **dais,
1401 struct hdac_hdmi_priv *hdmi, int num_dais)
1402{
1403 struct snd_soc_dai_driver *hdmi_dais;
1404 struct hdac_hdmi_cvt *cvt;
1405 char name[NAME_SIZE], dai_name[NAME_SIZE];
1406 int i = 0;
1407 u32 rates, bps;
1408 unsigned int rate_max = 384000, rate_min = 8000;
1409 u64 formats;
1410 int ret;
1411
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301412 hdmi_dais = devm_kzalloc(&hdev->dev,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301413 (sizeof(*hdmi_dais) * num_dais),
1414 GFP_KERNEL);
1415 if (!hdmi_dais)
1416 return -ENOMEM;
1417
1418 list_for_each_entry(cvt, &hdmi->cvt_list, head) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301419 ret = snd_hdac_query_supported_pcm(hdev, cvt->nid,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301420 &rates, &formats, &bps);
1421 if (ret)
1422 return ret;
1423
1424 sprintf(dai_name, "intel-hdmi-hifi%d", i+1);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301425 hdmi_dais[i].name = devm_kstrdup(&hdev->dev,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301426 dai_name, GFP_KERNEL);
1427
1428 if (!hdmi_dais[i].name)
1429 return -ENOMEM;
1430
1431 snprintf(name, sizeof(name), "hifi%d", i+1);
1432 hdmi_dais[i].playback.stream_name =
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301433 devm_kstrdup(&hdev->dev, name, GFP_KERNEL);
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301434 if (!hdmi_dais[i].playback.stream_name)
1435 return -ENOMEM;
1436
1437 /*
1438 * Set caps based on capability queried from the converter.
1439 * It will be constrained runtime based on ELD queried.
1440 */
1441 hdmi_dais[i].playback.formats = formats;
1442 hdmi_dais[i].playback.rates = rates;
1443 hdmi_dais[i].playback.rate_max = rate_max;
1444 hdmi_dais[i].playback.rate_min = rate_min;
1445 hdmi_dais[i].playback.channels_min = 2;
1446 hdmi_dais[i].playback.channels_max = 2;
Jeeja KP66d6bbc2017-03-24 23:10:26 +05301447 hdmi_dais[i].playback.sig_bits = bps;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301448 hdmi_dais[i].ops = &hdmi_dai_ops;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301449 i++;
1450 }
1451
1452 *dais = hdmi_dais;
Kuninori Morimoto1e02dac2017-12-20 01:48:13 +00001453 hdmi->dai_drv = hdmi_dais;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301454
1455 return 0;
1456}
1457
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301458/*
1459 * Parse all nodes and store the cvt/pin nids in array
1460 * Add one time initialization for pin and cvt widgets
1461 */
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301462static int hdac_hdmi_parse_and_map_nid(struct hdac_ext_device *edev,
1463 struct snd_soc_dai_driver **dais, int *num_dais)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301464{
1465 hda_nid_t nid;
Sudip Mukherjee3c83ac22015-12-01 14:29:35 +05301466 int i, num_nodes;
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301467 struct hdac_hdmi_cvt *temp_cvt, *cvt_next;
1468 struct hdac_hdmi_pin *temp_pin, *pin_next;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301469 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
1470 struct hdac_device *hdev = &edev->hdev;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301471 int ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301472
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301473 hdac_hdmi_skl_enable_all_pins(hdev);
1474 hdac_hdmi_skl_enable_dp12(hdev);
Subhransu S. Prusty211caab2016-02-12 07:46:03 +05301475
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301476 num_nodes = snd_hdac_get_sub_nodes(hdev, hdev->afg, &nid);
Subhransu S. Prusty541140d2015-12-09 21:46:08 +05301477 if (!nid || num_nodes <= 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301478 dev_warn(&hdev->dev, "HDMI: failed to get afg sub nodes\n");
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301479 return -EINVAL;
1480 }
1481
Puneeth Prabhu45a60082017-12-06 16:34:06 +05301482 for (i = 0; i < num_nodes; i++, nid++) {
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301483 unsigned int caps;
1484 unsigned int type;
1485
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301486 caps = get_wcaps(hdev, nid);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301487 type = get_wcaps_type(caps);
1488
1489 if (!(caps & AC_WCAP_DIGITAL))
1490 continue;
1491
1492 switch (type) {
1493
1494 case AC_WID_AUD_OUT:
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301495 ret = hdac_hdmi_add_cvt(edev, nid);
1496 if (ret < 0)
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301497 goto free_widgets;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301498 break;
1499
1500 case AC_WID_PIN:
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05301501 ret = hdac_hdmi_add_pin(edev, nid);
1502 if (ret < 0)
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301503 goto free_widgets;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301504 break;
1505 }
1506 }
1507
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301508 if (!hdmi->num_pin || !hdmi->num_cvt) {
1509 ret = -EIO;
1510 goto free_widgets;
1511 }
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301512
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301513 ret = hdac_hdmi_create_dais(hdev, dais, hdmi, hdmi->num_cvt);
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301514 if (ret) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301515 dev_err(&hdev->dev, "Failed to create dais with err: %d\n",
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301516 ret);
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301517 goto free_widgets;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301518 }
1519
1520 *num_dais = hdmi->num_cvt;
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301521 ret = hdac_hdmi_init_dai_map(edev);
1522 if (ret < 0)
1523 goto free_widgets;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301524
Subhransu S. Prusty1c0a7de2017-11-07 16:16:26 +05301525 return ret;
1526
1527free_widgets:
1528 list_for_each_entry_safe(temp_cvt, cvt_next, &hdmi->cvt_list, head) {
1529 list_del(&temp_cvt->head);
1530 kfree(temp_cvt->name);
1531 kfree(temp_cvt);
1532 }
1533
1534 list_for_each_entry_safe(temp_pin, pin_next, &hdmi->pin_list, head) {
1535 for (i = 0; i < temp_pin->num_ports; i++)
1536 temp_pin->ports[i].pin = NULL;
1537 kfree(temp_pin->ports);
1538 list_del(&temp_pin->head);
1539 kfree(temp_pin);
1540 }
1541
1542 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301543}
1544
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -07001545static void hdac_hdmi_eld_notify_cb(void *aptr, int port, int pipe)
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301546{
1547 struct hdac_ext_device *edev = aptr;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301548 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP754695f2017-02-06 12:09:14 +05301549 struct hdac_hdmi_pin *pin = NULL;
1550 struct hdac_hdmi_port *hport = NULL;
Kuninori Morimoto45101122018-01-29 04:36:54 +00001551 struct snd_soc_component *component = edev->scodec;
Jeeja KP2acd8302017-02-06 12:09:18 +05301552 int i;
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301553
1554 /* Don't know how this mapping is derived */
1555 hda_nid_t pin_nid = port + 0x04;
1556
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301557 dev_dbg(&edev->hdev.dev, "%s: for pin:%d port=%d\n", __func__,
Jeeja KP754695f2017-02-06 12:09:14 +05301558 pin_nid, pipe);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301559
1560 /*
1561 * skip notification during system suspend (but not in runtime PM);
1562 * the state will be updated at resume. Also since the ELD and
1563 * connection states are updated in anyway at the end of the resume,
1564 * we can skip it when received during PM process.
1565 */
Kuninori Morimoto45101122018-01-29 04:36:54 +00001566 if (snd_power_get_state(component->card->snd_card) !=
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301567 SNDRV_CTL_POWER_D0)
1568 return;
1569
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301570 if (atomic_read(&edev->hdev.in_pm))
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301571 return;
1572
1573 list_for_each_entry(pin, &hdmi->pin_list, head) {
Jeeja KP754695f2017-02-06 12:09:14 +05301574 if (pin->nid != pin_nid)
1575 continue;
1576
1577 /* In case of non MST pin, pipe is -1 */
1578 if (pipe == -1) {
Jeeja KP2acd8302017-02-06 12:09:18 +05301579 pin->mst_capable = false;
Jeeja KP754695f2017-02-06 12:09:14 +05301580 /* if not MST, default is port[0] */
1581 hport = &pin->ports[0];
Jeeja KP2acd8302017-02-06 12:09:18 +05301582 } else {
1583 for (i = 0; i < pin->num_ports; i++) {
1584 pin->mst_capable = true;
1585 if (pin->ports[i].id == pipe) {
1586 hport = &pin->ports[i];
Jeeja KP04c8f2b2017-03-01 22:41:23 +05301587 break;
Jeeja KP2acd8302017-02-06 12:09:18 +05301588 }
1589 }
Jeeja KP754695f2017-02-06 12:09:14 +05301590 }
Jeeja KP04c8f2b2017-03-01 22:41:23 +05301591
1592 if (hport)
1593 hdac_hdmi_present_sense(pin, hport);
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301594 }
Jeeja KP754695f2017-02-06 12:09:14 +05301595
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301596}
1597
1598static struct i915_audio_component_audio_ops aops = {
1599 .pin_eld_notify = hdac_hdmi_eld_notify_cb,
1600};
1601
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301602static struct snd_pcm *hdac_hdmi_get_pcm_from_id(struct snd_soc_card *card,
1603 int device)
1604{
1605 struct snd_soc_pcm_runtime *rtd;
1606
1607 list_for_each_entry(rtd, &card->rtd_list, list) {
1608 if (rtd->pcm && (rtd->pcm->device == device))
1609 return rtd->pcm;
1610 }
1611
1612 return NULL;
1613}
1614
Jeeja KP0324e512017-02-07 19:09:55 +05301615/* create jack pin kcontrols */
1616static int create_fill_jack_kcontrols(struct snd_soc_card *card,
1617 struct hdac_ext_device *edev)
1618{
1619 struct hdac_hdmi_pin *pin;
1620 struct snd_kcontrol_new *kc;
1621 char kc_name[NAME_SIZE], xname[NAME_SIZE];
1622 char *name;
1623 int i = 0, j;
Kuninori Morimoto45101122018-01-29 04:36:54 +00001624 struct snd_soc_component *component = edev->scodec;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301625 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP0324e512017-02-07 19:09:55 +05301626
Kuninori Morimoto45101122018-01-29 04:36:54 +00001627 kc = devm_kcalloc(component->dev, hdmi->num_ports,
Jeeja KP0324e512017-02-07 19:09:55 +05301628 sizeof(*kc), GFP_KERNEL);
1629
1630 if (!kc)
1631 return -ENOMEM;
1632
1633 list_for_each_entry(pin, &hdmi->pin_list, head) {
1634 for (j = 0; j < pin->num_ports; j++) {
1635 snprintf(xname, sizeof(xname), "hif%d-%d Jack",
1636 pin->nid, pin->ports[j].id);
Kuninori Morimoto45101122018-01-29 04:36:54 +00001637 name = devm_kstrdup(component->dev, xname, GFP_KERNEL);
Jeeja KP0324e512017-02-07 19:09:55 +05301638 if (!name)
1639 return -ENOMEM;
1640 snprintf(kc_name, sizeof(kc_name), "%s Switch", xname);
Kuninori Morimoto45101122018-01-29 04:36:54 +00001641 kc[i].name = devm_kstrdup(component->dev, kc_name,
Jeeja KP0324e512017-02-07 19:09:55 +05301642 GFP_KERNEL);
1643 if (!kc[i].name)
1644 return -ENOMEM;
1645
1646 kc[i].private_value = (unsigned long)name;
1647 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1648 kc[i].access = 0;
1649 kc[i].info = snd_soc_dapm_info_pin_switch;
1650 kc[i].put = snd_soc_dapm_put_pin_switch;
1651 kc[i].get = snd_soc_dapm_get_pin_switch;
1652 i++;
1653 }
1654 }
1655
1656 return snd_soc_add_card_controls(card, kc, i);
1657}
1658
Kuninori Morimoto45101122018-01-29 04:36:54 +00001659int hdac_hdmi_jack_port_init(struct snd_soc_component *component,
Jeeja KP0324e512017-02-07 19:09:55 +05301660 struct snd_soc_dapm_context *dapm)
1661{
Kuninori Morimoto45101122018-01-29 04:36:54 +00001662 struct hdac_ext_device *edev = snd_soc_component_get_drvdata(component);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301663 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP0324e512017-02-07 19:09:55 +05301664 struct hdac_hdmi_pin *pin;
1665 struct snd_soc_dapm_widget *widgets;
1666 struct snd_soc_dapm_route *route;
1667 char w_name[NAME_SIZE];
1668 int i = 0, j, ret;
1669
1670 widgets = devm_kcalloc(dapm->dev, hdmi->num_ports,
1671 sizeof(*widgets), GFP_KERNEL);
1672
1673 if (!widgets)
1674 return -ENOMEM;
1675
1676 route = devm_kcalloc(dapm->dev, hdmi->num_ports,
1677 sizeof(*route), GFP_KERNEL);
1678 if (!route)
1679 return -ENOMEM;
1680
1681 /* create Jack DAPM widget */
1682 list_for_each_entry(pin, &hdmi->pin_list, head) {
1683 for (j = 0; j < pin->num_ports; j++) {
1684 snprintf(w_name, sizeof(w_name), "hif%d-%d Jack",
1685 pin->nid, pin->ports[j].id);
1686
1687 ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i],
1688 snd_soc_dapm_spk, NULL,
1689 w_name, NULL, NULL, 0, NULL, 0);
1690 if (ret < 0)
1691 return ret;
1692
1693 pin->ports[j].jack_pin = widgets[i].name;
1694 pin->ports[j].dapm = dapm;
1695
1696 /* add to route from Jack widget to output */
1697 hdac_hdmi_fill_route(&route[i], pin->ports[j].jack_pin,
1698 NULL, pin->ports[j].output_pin, NULL);
1699
1700 i++;
1701 }
1702 }
1703
1704 /* Add Route from Jack widget to the output widget */
1705 ret = snd_soc_dapm_new_controls(dapm, widgets, hdmi->num_ports);
1706 if (ret < 0)
1707 return ret;
1708
1709 ret = snd_soc_dapm_add_routes(dapm, route, hdmi->num_ports);
1710 if (ret < 0)
1711 return ret;
1712
1713 ret = snd_soc_dapm_new_widgets(dapm->card);
1714 if (ret < 0)
1715 return ret;
1716
1717 /* Add Jack Pin switch Kcontrol */
1718 ret = create_fill_jack_kcontrols(dapm->card, edev);
1719
1720 if (ret < 0)
1721 return ret;
1722
1723 /* default set the Jack Pin switch to OFF */
1724 list_for_each_entry(pin, &hdmi->pin_list, head) {
1725 for (j = 0; j < pin->num_ports; j++)
1726 snd_soc_dapm_disable_pin(pin->ports[j].dapm,
1727 pin->ports[j].jack_pin);
1728 }
1729
1730 return 0;
1731}
1732EXPORT_SYMBOL_GPL(hdac_hdmi_jack_port_init);
1733
Jeeja KP62490012017-02-07 19:09:49 +05301734int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int device,
1735 struct snd_soc_jack *jack)
Jeeja KP4a3478d2016-02-12 07:46:06 +05301736{
Kuninori Morimoto45101122018-01-29 04:36:54 +00001737 struct snd_soc_component *component = dai->component;
1738 struct hdac_ext_device *edev = snd_soc_component_get_drvdata(component);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301739 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Jeeja KP4a3478d2016-02-12 07:46:06 +05301740 struct hdac_hdmi_pcm *pcm;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301741 struct snd_pcm *snd_pcm;
1742 int err;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301743
1744 /*
1745 * this is a new PCM device, create new pcm and
1746 * add to the pcm list
1747 */
1748 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
1749 if (!pcm)
1750 return -ENOMEM;
1751 pcm->pcm_id = device;
1752 pcm->cvt = hdmi->dai_map[dai->id].cvt;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301753 pcm->jack_event = 0;
Jeeja KP62490012017-02-07 19:09:49 +05301754 pcm->jack = jack;
Jeeja KPab1eea12017-01-24 21:49:05 +05301755 mutex_init(&pcm->lock);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301756 INIT_LIST_HEAD(&pcm->port_list);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301757 snd_pcm = hdac_hdmi_get_pcm_from_id(dai->component->card, device);
1758 if (snd_pcm) {
1759 err = snd_hdac_add_chmap_ctls(snd_pcm, device, &hdmi->chmap);
1760 if (err < 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301761 dev_err(&edev->hdev.dev,
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301762 "chmap control add failed with err: %d for pcm: %d\n",
1763 err, device);
1764 kfree(pcm);
1765 return err;
1766 }
1767 }
1768
Jeeja KP4a3478d2016-02-12 07:46:06 +05301769 list_add_tail(&pcm->head, &hdmi->pcm_list);
1770
Jeeja KP62490012017-02-07 19:09:49 +05301771 return 0;
Jeeja KP4a3478d2016-02-12 07:46:06 +05301772}
1773EXPORT_SYMBOL_GPL(hdac_hdmi_jack_init);
1774
Jeeja KPa9ce96b2017-02-07 19:09:46 +05301775static void hdac_hdmi_present_sense_all_pins(struct hdac_ext_device *edev,
1776 struct hdac_hdmi_priv *hdmi, bool detect_pin_caps)
1777{
1778 int i;
1779 struct hdac_hdmi_pin *pin;
1780
1781 list_for_each_entry(pin, &hdmi->pin_list, head) {
1782 if (detect_pin_caps) {
1783
1784 if (hdac_hdmi_get_port_len(edev, pin->nid) == 0)
1785 pin->mst_capable = false;
1786 else
1787 pin->mst_capable = true;
1788 }
1789
1790 for (i = 0; i < pin->num_ports; i++) {
1791 if (!pin->mst_capable && i > 0)
1792 continue;
1793
1794 hdac_hdmi_present_sense(pin, &pin->ports[i]);
1795 }
1796 }
1797}
1798
Kuninori Morimoto45101122018-01-29 04:36:54 +00001799static int hdmi_codec_probe(struct snd_soc_component *component)
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301800{
Kuninori Morimoto45101122018-01-29 04:36:54 +00001801 struct hdac_ext_device *edev = snd_soc_component_get_drvdata(component);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301802 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301803 struct snd_soc_dapm_context *dapm =
Kuninori Morimoto45101122018-01-29 04:36:54 +00001804 snd_soc_component_get_dapm(component);
Vinod Koulb2047e92016-05-12 08:58:55 +05301805 struct hdac_ext_link *hlink = NULL;
Jeeja KPa9ce96b2017-02-07 19:09:46 +05301806 int ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301807
Kuninori Morimoto45101122018-01-29 04:36:54 +00001808 edev->scodec = component;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301809
Vinod Koulb2047e92016-05-12 08:58:55 +05301810 /*
1811 * hold the ref while we probe, also no need to drop the ref on
1812 * exit, we call pm_runtime_suspend() so that will do for us
1813 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301814 hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdev.dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05301815 if (!hlink) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301816 dev_err(&edev->hdev.dev, "hdac link not found\n");
Vinod Koul500e06b2016-05-31 19:09:55 +05301817 return -EIO;
1818 }
1819
Vinod Koulb2047e92016-05-12 08:58:55 +05301820 snd_hdac_ext_bus_link_get(edev->ebus, hlink);
1821
Subhransu S. Prusty79f4e922016-02-12 07:46:05 +05301822 ret = create_fill_widget_route_map(dapm);
1823 if (ret < 0)
1824 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301825
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301826 aops.audio_ptr = edev;
1827 ret = snd_hdac_i915_register_notifier(&aops);
1828 if (ret < 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301829 dev_err(&edev->hdev.dev, "notifier register failed: err: %d\n",
Subhransu S. Prustyb8a54542016-02-12 07:46:01 +05301830 ret);
1831 return ret;
1832 }
1833
Jeeja KPa9ce96b2017-02-07 19:09:46 +05301834 hdac_hdmi_present_sense_all_pins(edev, hdmi, true);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301835 /* Imp: Store the card pointer in hda_codec */
1836 edev->card = dapm->card->snd_card;
1837
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301838 /*
1839 * hdac_device core already sets the state to active and calls
1840 * get_noresume. So enable runtime and set the device to suspend.
1841 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301842 pm_runtime_enable(&edev->hdev.dev);
1843 pm_runtime_put(&edev->hdev.dev);
1844 pm_runtime_suspend(&edev->hdev.dev);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301845
1846 return 0;
1847}
1848
Kuninori Morimoto45101122018-01-29 04:36:54 +00001849static void hdmi_codec_remove(struct snd_soc_component *component)
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301850{
Kuninori Morimoto45101122018-01-29 04:36:54 +00001851 struct hdac_ext_device *edev = snd_soc_component_get_drvdata(component);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05301852
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301853 pm_runtime_disable(&edev->hdev.dev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301854}
1855
Jeeja KP571d5072016-02-22 07:50:33 +05301856#ifdef CONFIG_PM
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301857static int hdmi_codec_prepare(struct device *dev)
1858{
1859 struct hdac_ext_device *edev = to_hda_ext_device(dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301860 struct hdac_device *hdev = &edev->hdev;
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301861
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301862 pm_runtime_get_sync(&edev->hdev.dev);
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301863
1864 /*
1865 * Power down afg.
1866 * codec_read is preferred over codec_write to set the power state.
1867 * This way verb is send to set the power state and response
1868 * is received. So setting power state is ensured without using loop
1869 * to read the state.
1870 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301871 snd_hdac_codec_read(hdev, hdev->afg, 0, AC_VERB_SET_POWER_STATE,
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301872 AC_PWRST_D3);
1873
1874 return 0;
1875}
1876
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301877static void hdmi_codec_complete(struct device *dev)
Jeeja KP571d5072016-02-22 07:50:33 +05301878{
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301879 struct hdac_ext_device *edev = to_hda_ext_device(dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301880 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
1881 struct hdac_device *hdev = &edev->hdev;
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301882
1883 /* Power up afg */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301884 snd_hdac_codec_read(hdev, hdev->afg, 0, AC_VERB_SET_POWER_STATE,
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301885 AC_PWRST_D0);
Jeeja KP571d5072016-02-22 07:50:33 +05301886
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301887 hdac_hdmi_skl_enable_all_pins(&edev->hdev);
1888 hdac_hdmi_skl_enable_dp12(&edev->hdev);
Jeeja KP571d5072016-02-22 07:50:33 +05301889
Jeeja KP571d5072016-02-22 07:50:33 +05301890 /*
1891 * As the ELD notify callback request is not entertained while the
1892 * device is in suspend state. Need to manually check detection of
Jeeja KPa9ce96b2017-02-07 19:09:46 +05301893 * all pins here. pin capablity change is not support, so use the
1894 * already set pin caps.
Jeeja KP571d5072016-02-22 07:50:33 +05301895 */
Jeeja KPa9ce96b2017-02-07 19:09:46 +05301896 hdac_hdmi_present_sense_all_pins(edev, hdmi, false);
Jeeja KP571d5072016-02-22 07:50:33 +05301897
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301898 pm_runtime_put_sync(&edev->hdev.dev);
Jeeja KP571d5072016-02-22 07:50:33 +05301899}
1900#else
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05301901#define hdmi_codec_prepare NULL
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05301902#define hdmi_codec_complete NULL
Jeeja KP571d5072016-02-22 07:50:33 +05301903#endif
1904
Kuninori Morimoto45101122018-01-29 04:36:54 +00001905static const struct snd_soc_component_driver hdmi_hda_codec = {
1906 .probe = hdmi_codec_probe,
1907 .remove = hdmi_codec_remove,
1908 .use_pmdown_time = 1,
1909 .endianness = 1,
1910 .non_legacy_dai_naming = 1,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301911};
1912
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301913static void hdac_hdmi_get_chmap(struct hdac_device *hdev, int pcm_idx,
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301914 unsigned char *chmap)
1915{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301916 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301917 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301918
Jeeja KPab1eea12017-01-24 21:49:05 +05301919 memcpy(chmap, pcm->chmap, ARRAY_SIZE(pcm->chmap));
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301920}
1921
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301922static void hdac_hdmi_set_chmap(struct hdac_device *hdev, int pcm_idx,
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301923 unsigned char *chmap, int prepared)
1924{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301925 struct hdac_ext_device *edev = to_ehdac_device(hdev);
1926 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301927 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301928 struct hdac_hdmi_port *port;
1929
Subhransu S. Prustyeb50fa12017-11-07 16:16:25 +05301930 if (!pcm)
1931 return;
1932
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301933 if (list_empty(&pcm->port_list))
1934 return;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301935
Jeeja KPab1eea12017-01-24 21:49:05 +05301936 mutex_lock(&pcm->lock);
1937 pcm->chmap_set = true;
1938 memcpy(pcm->chmap, chmap, ARRAY_SIZE(pcm->chmap));
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301939 list_for_each_entry(port, &pcm->port_list, head)
1940 if (prepared)
1941 hdac_hdmi_setup_audio_infoframe(edev, pcm, port);
Jeeja KPab1eea12017-01-24 21:49:05 +05301942 mutex_unlock(&pcm->lock);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301943}
1944
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301945static bool is_hdac_hdmi_pcm_attached(struct hdac_device *hdev, int pcm_idx)
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301946{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301947 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301948 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301949
Subhransu S. Prustyeb50fa12017-11-07 16:16:25 +05301950 if (!pcm)
1951 return false;
1952
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301953 if (list_empty(&pcm->port_list))
1954 return false;
1955
1956 return true;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301957}
1958
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301959static int hdac_hdmi_get_spk_alloc(struct hdac_device *hdev, int pcm_idx)
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301960{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301961 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301962 struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301963 struct hdac_hdmi_port *port;
1964
Subhransu S. Prustyeb50fa12017-11-07 16:16:25 +05301965 if (!pcm)
1966 return 0;
1967
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05301968 if (list_empty(&pcm->port_list))
1969 return 0;
1970
1971 port = list_first_entry(&pcm->port_list, struct hdac_hdmi_port, head);
1972
1973 if (!port)
1974 return 0;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301975
Jeeja KP754695f2017-02-06 12:09:14 +05301976 if (!port || !port->eld.eld_valid)
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301977 return 0;
1978
Jeeja KP754695f2017-02-06 12:09:14 +05301979 return port->eld.info.spk_alloc;
Subhransu S. Prusty28890992016-04-14 10:07:34 +05301980}
1981
Pradeep Tewani5622bc92017-07-20 11:40:56 +05301982static struct hdac_hdmi_drv_data intel_glk_drv_data = {
1983 .vendor_nid = INTEL_GLK_VENDOR_NID,
1984};
1985
1986static struct hdac_hdmi_drv_data intel_drv_data = {
1987 .vendor_nid = INTEL_VENDOR_NID,
1988};
1989
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301990static int hdac_hdmi_dev_probe(struct hdac_ext_device *edev)
1991{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301992 struct hdac_device *hdev = &edev->hdev;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301993 struct hdac_hdmi_priv *hdmi_priv;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301994 struct snd_soc_dai_driver *hdmi_dais = NULL;
Vinod Koulb2047e92016-05-12 08:58:55 +05301995 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05301996 int num_dais = 0;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05301997 int ret = 0;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05301998 struct hdac_driver *hdrv = drv_to_hdac_driver(hdev->dev.driver);
1999 const struct hda_device_id *hdac_id = hdac_get_device_id(hdev, hdrv);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302000
Vinod Koulb2047e92016-05-12 08:58:55 +05302001 /* hold the ref while we probe */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302002 hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdev.dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05302003 if (!hlink) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302004 dev_err(&edev->hdev.dev, "hdac link not found\n");
Vinod Koul500e06b2016-05-31 19:09:55 +05302005 return -EIO;
2006 }
2007
Vinod Koulb2047e92016-05-12 08:58:55 +05302008 snd_hdac_ext_bus_link_get(edev->ebus, hlink);
2009
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302010 hdmi_priv = devm_kzalloc(&hdev->dev, sizeof(*hdmi_priv), GFP_KERNEL);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302011 if (hdmi_priv == NULL)
2012 return -ENOMEM;
2013
2014 edev->private_data = hdmi_priv;
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302015 snd_hdac_register_chmap_ops(hdev, &hdmi_priv->chmap);
Subhransu S. Prusty28890992016-04-14 10:07:34 +05302016 hdmi_priv->chmap.ops.get_chmap = hdac_hdmi_get_chmap;
2017 hdmi_priv->chmap.ops.set_chmap = hdac_hdmi_set_chmap;
2018 hdmi_priv->chmap.ops.is_pcm_attached = is_hdac_hdmi_pcm_attached;
2019 hdmi_priv->chmap.ops.get_spk_alloc = hdac_hdmi_get_spk_alloc;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302020
Subhransu S. Prustyeb50fa12017-11-07 16:16:25 +05302021 if (!hdac_id)
2022 return -ENODEV;
2023
Pradeep Tewani5622bc92017-07-20 11:40:56 +05302024 if (hdac_id->driver_data)
2025 hdmi_priv->drv_data =
2026 (struct hdac_hdmi_drv_data *)hdac_id->driver_data;
2027 else
2028 hdmi_priv->drv_data = &intel_drv_data;
2029
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302030 dev_set_drvdata(&hdev->dev, edev);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302031
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302032 INIT_LIST_HEAD(&hdmi_priv->pin_list);
2033 INIT_LIST_HEAD(&hdmi_priv->cvt_list);
Jeeja KP4a3478d2016-02-12 07:46:06 +05302034 INIT_LIST_HEAD(&hdmi_priv->pcm_list);
2035 mutex_init(&hdmi_priv->pin_mutex);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302036
Ramesh Babuaeaccef2016-02-17 21:34:01 +05302037 /*
2038 * Turned off in the runtime_suspend during the first explicit
2039 * pm_runtime_suspend call.
2040 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302041 ret = snd_hdac_display_power(edev->hdev.bus, true);
Ramesh Babuaeaccef2016-02-17 21:34:01 +05302042 if (ret < 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302043 dev_err(&edev->hdev.dev,
Ramesh Babuaeaccef2016-02-17 21:34:01 +05302044 "Cannot turn on display power on i915 err: %d\n",
2045 ret);
2046 return ret;
2047 }
2048
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05302049 ret = hdac_hdmi_parse_and_map_nid(edev, &hdmi_dais, &num_dais);
2050 if (ret < 0) {
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302051 dev_err(&hdev->dev,
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05302052 "Failed in parse and map nid with err: %d\n", ret);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302053 return ret;
Subhransu S. Prusty17a42c42016-02-12 07:46:04 +05302054 }
Puneeth Prabhu0fb02ba2017-12-06 16:34:05 +05302055 snd_hdac_refresh_widgets(hdev, true);
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302056
2057 /* ASoC specific initialization */
Kuninori Morimoto45101122018-01-29 04:36:54 +00002058 ret = devm_snd_soc_register_component(&hdev->dev, &hdmi_hda_codec,
Vinod Koulb2047e92016-05-12 08:58:55 +05302059 hdmi_dais, num_dais);
2060
2061 snd_hdac_ext_bus_link_put(edev->ebus, hlink);
2062
2063 return ret;
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302064}
2065
2066static int hdac_hdmi_dev_remove(struct hdac_ext_device *edev)
2067{
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302068 struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(&edev->hdev);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302069 struct hdac_hdmi_pin *pin, *pin_next;
2070 struct hdac_hdmi_cvt *cvt, *cvt_next;
Jeeja KP4a3478d2016-02-12 07:46:06 +05302071 struct hdac_hdmi_pcm *pcm, *pcm_next;
Jeeja KP2fe42dd2017-03-01 22:41:24 +05302072 struct hdac_hdmi_port *port, *port_next;
Jeeja KP754695f2017-02-06 12:09:14 +05302073 int i;
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302074
Jeeja KP4a3478d2016-02-12 07:46:06 +05302075 list_for_each_entry_safe(pcm, pcm_next, &hdmi->pcm_list, head) {
2076 pcm->cvt = NULL;
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05302077 if (list_empty(&pcm->port_list))
2078 continue;
2079
Jeeja KP2fe42dd2017-03-01 22:41:24 +05302080 list_for_each_entry_safe(port, port_next,
2081 &pcm->port_list, head)
2082 list_del(&port->head);
Jeeja KPe0e5d3e2017-02-07 19:09:48 +05302083
Jeeja KP4a3478d2016-02-12 07:46:06 +05302084 list_del(&pcm->head);
2085 kfree(pcm);
2086 }
2087
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302088 list_for_each_entry_safe(cvt, cvt_next, &hdmi->cvt_list, head) {
2089 list_del(&cvt->head);
Jeeja KP4a3478d2016-02-12 07:46:06 +05302090 kfree(cvt->name);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302091 kfree(cvt);
2092 }
2093
2094 list_for_each_entry_safe(pin, pin_next, &hdmi->pin_list, head) {
Jeeja KP754695f2017-02-06 12:09:14 +05302095 for (i = 0; i < pin->num_ports; i++)
2096 pin->ports[i].pin = NULL;
2097 kfree(pin->ports);
Subhransu S. Prusty15b91442015-12-09 21:46:10 +05302098 list_del(&pin->head);
2099 kfree(pin);
2100 }
2101
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302102 return 0;
2103}
2104
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302105#ifdef CONFIG_PM
2106static int hdac_hdmi_runtime_suspend(struct device *dev)
2107{
2108 struct hdac_ext_device *edev = to_hda_ext_device(dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302109 struct hdac_device *hdev = &edev->hdev;
2110 struct hdac_bus *bus = hdev->bus;
Vinod Koulb2047e92016-05-12 08:58:55 +05302111 struct hdac_ext_bus *ebus = hbus_to_ebus(bus);
2112 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302113 int err;
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302114
2115 dev_dbg(dev, "Enter: %s\n", __func__);
2116
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302117 /* controller may not have been initialized for the first time */
2118 if (!bus)
2119 return 0;
2120
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05302121 /*
2122 * Power down afg.
2123 * codec_read is preferred over codec_write to set the power state.
2124 * This way verb is send to set the power state and response
2125 * is received. So setting power state is ensured without using loop
2126 * to read the state.
2127 */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302128 snd_hdac_codec_read(hdev, hdev->afg, 0, AC_VERB_SET_POWER_STATE,
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05302129 AC_PWRST_D3);
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302130 err = snd_hdac_display_power(bus, false);
2131 if (err < 0) {
2132 dev_err(bus->dev, "Cannot turn on display power on i915\n");
2133 return err;
2134 }
2135
Vinod Koulb2047e92016-05-12 08:58:55 +05302136 hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05302137 if (!hlink) {
2138 dev_err(dev, "hdac link not found\n");
2139 return -EIO;
2140 }
2141
Vinod Koulb2047e92016-05-12 08:58:55 +05302142 snd_hdac_ext_bus_link_put(ebus, hlink);
2143
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302144 return 0;
2145}
2146
2147static int hdac_hdmi_runtime_resume(struct device *dev)
2148{
2149 struct hdac_ext_device *edev = to_hda_ext_device(dev);
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302150 struct hdac_device *hdev = &edev->hdev;
2151 struct hdac_bus *bus = hdev->bus;
Vinod Koulb2047e92016-05-12 08:58:55 +05302152 struct hdac_ext_bus *ebus = hbus_to_ebus(bus);
2153 struct hdac_ext_link *hlink = NULL;
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302154 int err;
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302155
2156 dev_dbg(dev, "Enter: %s\n", __func__);
2157
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302158 /* controller may not have been initialized for the first time */
2159 if (!bus)
2160 return 0;
2161
Vinod Koulb2047e92016-05-12 08:58:55 +05302162 hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev));
Vinod Koul500e06b2016-05-31 19:09:55 +05302163 if (!hlink) {
2164 dev_err(dev, "hdac link not found\n");
2165 return -EIO;
2166 }
2167
Vinod Koulb2047e92016-05-12 08:58:55 +05302168 snd_hdac_ext_bus_link_get(ebus, hlink);
2169
Subhransu S. Prusty07f083a2015-11-10 18:42:10 +05302170 err = snd_hdac_display_power(bus, true);
2171 if (err < 0) {
2172 dev_err(bus->dev, "Cannot turn on display power on i915\n");
2173 return err;
2174 }
2175
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302176 hdac_hdmi_skl_enable_all_pins(&edev->hdev);
2177 hdac_hdmi_skl_enable_dp12(&edev->hdev);
Subhransu S. Prustyab85f5b2016-02-17 21:34:02 +05302178
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302179 /* Power up afg */
Ughreja, Rakesh Af0c5ebe2017-12-01 14:43:19 +05302180 snd_hdac_codec_read(hdev, hdev->afg, 0, AC_VERB_SET_POWER_STATE,
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05302181 AC_PWRST_D0);
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302182
2183 return 0;
2184}
2185#else
2186#define hdac_hdmi_runtime_suspend NULL
2187#define hdac_hdmi_runtime_resume NULL
2188#endif
2189
2190static const struct dev_pm_ops hdac_hdmi_pm = {
2191 SET_RUNTIME_PM_OPS(hdac_hdmi_runtime_suspend, hdac_hdmi_runtime_resume, NULL)
Subhransu S. Prusty1b377cc2016-04-01 13:36:26 +05302192 .prepare = hdmi_codec_prepare,
Subhransu S. Prusty0fee1792016-04-01 13:36:25 +05302193 .complete = hdmi_codec_complete,
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302194};
2195
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302196static const struct hda_device_id hdmi_list[] = {
2197 HDA_CODEC_EXT_ENTRY(0x80862809, 0x100000, "Skylake HDMI", 0),
Jeeja KPe2304802016-03-11 10:12:55 +05302198 HDA_CODEC_EXT_ENTRY(0x8086280a, 0x100000, "Broxton HDMI", 0),
Shreyas NCcc216882016-07-11 22:02:09 +05302199 HDA_CODEC_EXT_ENTRY(0x8086280b, 0x100000, "Kabylake HDMI", 0),
Guneshwor Singh5fb6e0a2017-12-21 08:45:29 +05302200 HDA_CODEC_EXT_ENTRY(0x8086280c, 0x100000, "Cannonlake HDMI",
2201 &intel_glk_drv_data),
Pradeep Tewani5622bc92017-07-20 11:40:56 +05302202 HDA_CODEC_EXT_ENTRY(0x8086280d, 0x100000, "Geminilake HDMI",
2203 &intel_glk_drv_data),
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302204 {}
2205};
2206
2207MODULE_DEVICE_TABLE(hdaudio, hdmi_list);
2208
2209static struct hdac_ext_driver hdmi_driver = {
2210 . hdac = {
2211 .driver = {
2212 .name = "HDMI HDA Codec",
Subhransu S. Prustye342ac02015-11-10 18:42:07 +05302213 .pm = &hdac_hdmi_pm,
Subhransu S. Prusty18382ea2015-11-10 18:42:06 +05302214 },
2215 .id_table = hdmi_list,
2216 },
2217 .probe = hdac_hdmi_dev_probe,
2218 .remove = hdac_hdmi_dev_remove,
2219};
2220
2221static int __init hdmi_init(void)
2222{
2223 return snd_hda_ext_driver_register(&hdmi_driver);
2224}
2225
2226static void __exit hdmi_exit(void)
2227{
2228 snd_hda_ext_driver_unregister(&hdmi_driver);
2229}
2230
2231module_init(hdmi_init);
2232module_exit(hdmi_exit);
2233
2234MODULE_LICENSE("GPL v2");
2235MODULE_DESCRIPTION("HDMI HD codec");
2236MODULE_AUTHOR("Samreen Nilofer<samreen.nilofer@intel.com>");
2237MODULE_AUTHOR("Subhransu S. Prusty<subhransu.s.prusty@intel.com>");