Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1 | /* |
| 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. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 24 | #include <linux/hdmi.h> |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 25 | #include <drm/drm_edid.h> |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 26 | #include <sound/pcm_params.h> |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 27 | #include <sound/jack.h> |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 28 | #include <sound/soc.h> |
| 29 | #include <sound/hdaudio_ext.h> |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 30 | #include <sound/hda_i915.h> |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 31 | #include <sound/pcm_drm_eld.h> |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 32 | #include <sound/hda_chmap.h> |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 33 | #include "../../hda/local.h" |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 34 | #include "hdac_hdmi.h" |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 35 | |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 36 | #define NAME_SIZE 32 |
| 37 | |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 38 | #define AMP_OUT_MUTE 0xb080 |
| 39 | #define AMP_OUT_UNMUTE 0xb000 |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 40 | #define PIN_OUT (AC_PINCTL_OUT_EN) |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 41 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 42 | #define HDA_MAX_CONNECTIONS 32 |
| 43 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 44 | #define HDA_MAX_CVTS 3 |
| 45 | |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 46 | #define ELD_MAX_SIZE 256 |
| 47 | #define ELD_FIXED_BYTES 20 |
| 48 | |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 49 | #define ELD_VER_CEA_861D 2 |
| 50 | #define ELD_VER_PARTIAL 31 |
| 51 | #define ELD_MAX_MNL 16 |
| 52 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 53 | struct hdac_hdmi_cvt_params { |
| 54 | unsigned int channels_min; |
| 55 | unsigned int channels_max; |
| 56 | u32 rates; |
| 57 | u64 formats; |
| 58 | unsigned int maxbps; |
| 59 | }; |
| 60 | |
| 61 | struct hdac_hdmi_cvt { |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 62 | struct list_head head; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 63 | hda_nid_t nid; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 64 | const char *name; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 65 | struct hdac_hdmi_cvt_params params; |
| 66 | }; |
| 67 | |
Subhransu S. Prusty | b7756ed | 2016-04-14 10:07:28 +0530 | [diff] [blame] | 68 | /* Currently only spk_alloc, more to be added */ |
| 69 | struct hdac_hdmi_parsed_eld { |
| 70 | u8 spk_alloc; |
| 71 | }; |
| 72 | |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 73 | struct hdac_hdmi_eld { |
| 74 | bool monitor_present; |
| 75 | bool eld_valid; |
| 76 | int eld_size; |
| 77 | char eld_buffer[ELD_MAX_SIZE]; |
Subhransu S. Prusty | b7756ed | 2016-04-14 10:07:28 +0530 | [diff] [blame] | 78 | struct hdac_hdmi_parsed_eld info; |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 79 | }; |
| 80 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 81 | struct hdac_hdmi_pin { |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 82 | struct list_head head; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 83 | hda_nid_t nid; |
| 84 | int num_mux_nids; |
| 85 | hda_nid_t mux_nids[HDA_MAX_CONNECTIONS]; |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 86 | struct hdac_hdmi_eld eld; |
| 87 | struct hdac_ext_device *edev; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 88 | }; |
| 89 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 90 | struct hdac_hdmi_pcm { |
| 91 | struct list_head head; |
| 92 | int pcm_id; |
| 93 | struct hdac_hdmi_pin *pin; |
| 94 | struct hdac_hdmi_cvt *cvt; |
| 95 | struct snd_jack *jack; |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 96 | int stream_tag; |
| 97 | int channels; |
| 98 | int format; |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 99 | bool chmap_set; |
| 100 | unsigned char chmap[8]; /* ALSA API channel-map */ |
| 101 | struct mutex lock; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 102 | }; |
| 103 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 104 | struct hdac_hdmi_dai_pin_map { |
| 105 | int dai_id; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 106 | struct hdac_hdmi_pin *pin; |
| 107 | struct hdac_hdmi_cvt *cvt; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | struct hdac_hdmi_priv { |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 111 | struct hdac_hdmi_dai_pin_map dai_map[HDA_MAX_CVTS]; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 112 | struct list_head pin_list; |
| 113 | struct list_head cvt_list; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 114 | struct list_head pcm_list; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 115 | int num_pin; |
| 116 | int num_cvt; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 117 | struct mutex pin_mutex; |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 118 | struct hdac_chmap chmap; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 119 | }; |
| 120 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 121 | static struct hdac_hdmi_pcm * |
| 122 | hdac_hdmi_get_pcm_from_cvt(struct hdac_hdmi_priv *hdmi, |
| 123 | struct hdac_hdmi_cvt *cvt) |
| 124 | { |
| 125 | struct hdac_hdmi_pcm *pcm = NULL; |
Jeeja KP | 1de777f | 2017-01-10 17:57:48 +0530 | [diff] [blame] | 126 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 127 | list_for_each_entry(pcm, &hdmi->pcm_list, head) { |
| 128 | if (pcm->cvt == cvt) |
| 129 | break; |
| 130 | } |
| 131 | |
| 132 | return pcm; |
| 133 | } |
Jeeja KP | 1de777f | 2017-01-10 17:57:48 +0530 | [diff] [blame] | 134 | |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 135 | static struct hdac_hdmi_pcm *get_hdmi_pcm_from_id(struct hdac_hdmi_priv *hdmi, |
| 136 | int pcm_idx) |
| 137 | { |
| 138 | struct hdac_hdmi_pcm *pcm; |
| 139 | |
| 140 | list_for_each_entry(pcm, &hdmi->pcm_list, head) { |
| 141 | if (pcm->pcm_id == pcm_idx) |
| 142 | return pcm; |
| 143 | } |
| 144 | |
| 145 | return NULL; |
| 146 | } |
| 147 | |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 148 | static inline struct hdac_ext_device *to_hda_ext_device(struct device *dev) |
| 149 | { |
Geliang Tang | 51b2c42 | 2015-12-28 22:47:13 +0800 | [diff] [blame] | 150 | struct hdac_device *hdac = dev_to_hdac_dev(dev); |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 151 | |
Geliang Tang | 51b2c42 | 2015-12-28 22:47:13 +0800 | [diff] [blame] | 152 | return to_ehdac_device(hdac); |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 153 | } |
| 154 | |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 155 | static unsigned int sad_format(const u8 *sad) |
| 156 | { |
| 157 | return ((sad[0] >> 0x3) & 0x1f); |
| 158 | } |
| 159 | |
| 160 | static unsigned int sad_sample_bits_lpcm(const u8 *sad) |
| 161 | { |
| 162 | return (sad[2] & 7); |
| 163 | } |
| 164 | |
| 165 | static int hdac_hdmi_eld_limit_formats(struct snd_pcm_runtime *runtime, |
| 166 | void *eld) |
| 167 | { |
| 168 | u64 formats = SNDRV_PCM_FMTBIT_S16; |
| 169 | int i; |
| 170 | const u8 *sad, *eld_buf = eld; |
| 171 | |
| 172 | sad = drm_eld_sad(eld_buf); |
| 173 | if (!sad) |
| 174 | goto format_constraint; |
| 175 | |
| 176 | for (i = drm_eld_sad_count(eld_buf); i > 0; i--, sad += 3) { |
| 177 | if (sad_format(sad) == 1) { /* AUDIO_CODING_TYPE_LPCM */ |
| 178 | |
| 179 | /* |
| 180 | * the controller support 20 and 24 bits in 32 bit |
| 181 | * container so we set S32 |
| 182 | */ |
| 183 | if (sad_sample_bits_lpcm(sad) & 0x6) |
| 184 | formats |= SNDRV_PCM_FMTBIT_S32; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | format_constraint: |
| 189 | return snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, |
| 190 | formats); |
| 191 | |
| 192 | } |
| 193 | |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 194 | static void |
| 195 | hdac_hdmi_set_dip_index(struct hdac_ext_device *hdac, hda_nid_t pin_nid, |
| 196 | int packet_index, int byte_index) |
| 197 | { |
| 198 | int val; |
| 199 | |
| 200 | val = (packet_index << 5) | (byte_index & 0x1f); |
| 201 | |
| 202 | snd_hdac_codec_write(&hdac->hdac, pin_nid, 0, |
| 203 | AC_VERB_SET_HDMI_DIP_INDEX, val); |
| 204 | } |
| 205 | |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 206 | struct dp_audio_infoframe { |
| 207 | u8 type; /* 0x84 */ |
| 208 | u8 len; /* 0x1b */ |
| 209 | u8 ver; /* 0x11 << 2 */ |
| 210 | |
| 211 | u8 CC02_CT47; /* match with HDMI infoframe from this on */ |
| 212 | u8 SS01_SF24; |
| 213 | u8 CXT04; |
| 214 | u8 CA; |
| 215 | u8 LFEPBL01_LSV36_DM_INH7; |
| 216 | }; |
| 217 | |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 218 | static int hdac_hdmi_setup_audio_infoframe(struct hdac_ext_device *hdac, |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 219 | struct hdac_hdmi_pcm *pcm, struct hdac_hdmi_pin *pin) |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 220 | { |
| 221 | uint8_t buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AUDIO_INFOFRAME_SIZE]; |
| 222 | struct hdmi_audio_infoframe frame; |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 223 | struct dp_audio_infoframe dp_ai; |
| 224 | struct hdac_hdmi_priv *hdmi = hdac->private_data; |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 225 | struct hdac_hdmi_cvt *cvt = pcm->cvt; |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 226 | u8 *dip; |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 227 | int ret; |
| 228 | int i; |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 229 | const u8 *eld_buf; |
| 230 | u8 conn_type; |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 231 | int channels, ca; |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 232 | |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 233 | ca = snd_hdac_channel_allocation(&hdac->hdac, pin->eld.info.spk_alloc, |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 234 | pcm->channels, pcm->chmap_set, true, pcm->chmap); |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 235 | |
| 236 | channels = snd_hdac_get_active_channels(ca); |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 237 | hdmi->chmap.ops.set_channel_count(&hdac->hdac, cvt->nid, channels); |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 238 | |
| 239 | snd_hdac_setup_channel_mapping(&hdmi->chmap, pin->nid, false, ca, |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 240 | pcm->channels, pcm->chmap, pcm->chmap_set); |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 241 | |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 242 | eld_buf = pin->eld.eld_buffer; |
| 243 | conn_type = drm_eld_get_conn_type(eld_buf); |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 244 | |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 245 | switch (conn_type) { |
| 246 | case DRM_ELD_CONN_TYPE_HDMI: |
| 247 | hdmi_audio_infoframe_init(&frame); |
| 248 | |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 249 | frame.channels = channels; |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 250 | frame.channel_allocation = ca; |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 251 | |
| 252 | ret = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer)); |
| 253 | if (ret < 0) |
| 254 | return ret; |
| 255 | |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 256 | break; |
| 257 | |
| 258 | case DRM_ELD_CONN_TYPE_DP: |
| 259 | memset(&dp_ai, 0, sizeof(dp_ai)); |
| 260 | dp_ai.type = 0x84; |
| 261 | dp_ai.len = 0x1b; |
| 262 | dp_ai.ver = 0x11 << 2; |
| 263 | dp_ai.CC02_CT47 = channels - 1; |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 264 | dp_ai.CA = ca; |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 265 | |
| 266 | dip = (u8 *)&dp_ai; |
| 267 | break; |
| 268 | |
| 269 | default: |
| 270 | dev_err(&hdac->hdac.dev, "Invalid connection type: %d\n", |
| 271 | conn_type); |
| 272 | return -EIO; |
| 273 | } |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 274 | |
| 275 | /* stop infoframe transmission */ |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 276 | hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0); |
| 277 | snd_hdac_codec_write(&hdac->hdac, pin->nid, 0, |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 278 | AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_DISABLE); |
| 279 | |
| 280 | |
| 281 | /* Fill infoframe. Index auto-incremented */ |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 282 | hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0); |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 283 | if (conn_type == DRM_ELD_CONN_TYPE_HDMI) { |
Subhransu S. Prusty | 391005e | 2016-03-10 09:04:07 +0530 | [diff] [blame] | 284 | for (i = 0; i < sizeof(buffer); i++) |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 285 | snd_hdac_codec_write(&hdac->hdac, pin->nid, 0, |
Subhransu S. Prusty | 391005e | 2016-03-10 09:04:07 +0530 | [diff] [blame] | 286 | AC_VERB_SET_HDMI_DIP_DATA, buffer[i]); |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 287 | } else { |
| 288 | for (i = 0; i < sizeof(dp_ai); i++) |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 289 | snd_hdac_codec_write(&hdac->hdac, pin->nid, 0, |
Subhransu S. Prusty | 478f544e | 2016-02-12 07:46:09 +0530 | [diff] [blame] | 290 | AC_VERB_SET_HDMI_DIP_DATA, dip[i]); |
| 291 | } |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 292 | |
| 293 | /* Start infoframe */ |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 294 | hdac_hdmi_set_dip_index(hdac, pin->nid, 0x0, 0x0); |
| 295 | snd_hdac_codec_write(&hdac->hdac, pin->nid, 0, |
Subhransu S. Prusty | a657f1d | 2015-11-10 18:42:09 +0530 | [diff] [blame] | 296 | AC_VERB_SET_HDMI_DIP_XMIT, AC_DIPXMIT_BEST); |
| 297 | |
| 298 | return 0; |
| 299 | } |
| 300 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 301 | static int hdac_hdmi_set_tdm_slot(struct snd_soc_dai *dai, |
| 302 | unsigned int tx_mask, unsigned int rx_mask, |
| 303 | int slots, int slot_width) |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 304 | { |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 305 | struct hdac_ext_device *edev = snd_soc_dai_get_drvdata(dai); |
| 306 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 307 | struct hdac_hdmi_dai_pin_map *dai_map; |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 308 | struct hdac_hdmi_pcm *pcm; |
| 309 | |
| 310 | dev_dbg(&edev->hdac.dev, "%s: strm_tag: %d\n", __func__, tx_mask); |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 311 | |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 312 | dai_map = &hdmi->dai_map[dai->id]; |
| 313 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 314 | pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt); |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 315 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 316 | if (pcm) |
| 317 | pcm->stream_tag = (tx_mask << 4); |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 318 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 319 | return 0; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | static int hdac_hdmi_set_hw_params(struct snd_pcm_substream *substream, |
| 323 | struct snd_pcm_hw_params *hparams, struct snd_soc_dai *dai) |
| 324 | { |
| 325 | struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai); |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 326 | struct hdac_hdmi_priv *hdmi = hdac->private_data; |
| 327 | struct hdac_hdmi_dai_pin_map *dai_map; |
| 328 | struct hdac_hdmi_pin *pin; |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 329 | struct hdac_hdmi_pcm *pcm; |
| 330 | int format; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 331 | |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 332 | dai_map = &hdmi->dai_map[dai->id]; |
| 333 | pin = dai_map->pin; |
| 334 | |
| 335 | if (!pin) |
| 336 | return -ENODEV; |
| 337 | |
| 338 | if ((!pin->eld.monitor_present) || (!pin->eld.eld_valid)) { |
| 339 | dev_err(&hdac->hdac.dev, "device is not configured for this pin: %d\n", |
| 340 | pin->nid); |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 341 | return -ENODEV; |
| 342 | } |
| 343 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 344 | format = snd_hdac_calc_stream_format(params_rate(hparams), |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 345 | params_channels(hparams), params_format(hparams), |
| 346 | 24, 0); |
| 347 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 348 | pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt); |
| 349 | if (!pcm) |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 350 | return -EIO; |
| 351 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 352 | pcm->format = format; |
| 353 | pcm->channels = params_channels(hparams); |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 354 | |
| 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | static int hdac_hdmi_query_pin_connlist(struct hdac_ext_device *hdac, |
| 359 | struct hdac_hdmi_pin *pin) |
| 360 | { |
| 361 | if (!(get_wcaps(&hdac->hdac, pin->nid) & AC_WCAP_CONN_LIST)) { |
| 362 | dev_warn(&hdac->hdac.dev, |
| 363 | "HDMI: pin %d wcaps %#x does not support connection list\n", |
| 364 | pin->nid, get_wcaps(&hdac->hdac, pin->nid)); |
| 365 | return -EINVAL; |
| 366 | } |
| 367 | |
| 368 | pin->num_mux_nids = snd_hdac_get_connections(&hdac->hdac, pin->nid, |
| 369 | pin->mux_nids, HDA_MAX_CONNECTIONS); |
| 370 | if (pin->num_mux_nids == 0) |
| 371 | dev_warn(&hdac->hdac.dev, "No connections found for pin: %d\n", |
| 372 | pin->nid); |
| 373 | |
| 374 | dev_dbg(&hdac->hdac.dev, "num_mux_nids %d for pin: %d\n", |
| 375 | pin->num_mux_nids, pin->nid); |
| 376 | |
| 377 | return pin->num_mux_nids; |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * Query pcm list and return pin widget to which stream is routed. |
| 382 | * |
| 383 | * Also query connection list of the pin, to validate the cvt to pin map. |
| 384 | * |
| 385 | * Same stream rendering to multiple pins simultaneously can be done |
| 386 | * possibly, but not supported for now in driver. So return the first pin |
| 387 | * connected. |
| 388 | */ |
| 389 | static struct hdac_hdmi_pin *hdac_hdmi_get_pin_from_cvt( |
| 390 | struct hdac_ext_device *edev, |
| 391 | struct hdac_hdmi_priv *hdmi, |
| 392 | struct hdac_hdmi_cvt *cvt) |
| 393 | { |
| 394 | struct hdac_hdmi_pcm *pcm; |
| 395 | struct hdac_hdmi_pin *pin = NULL; |
| 396 | int ret, i; |
| 397 | |
| 398 | list_for_each_entry(pcm, &hdmi->pcm_list, head) { |
| 399 | if (pcm->cvt == cvt) { |
| 400 | pin = pcm->pin; |
| 401 | break; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | if (pin) { |
| 406 | ret = hdac_hdmi_query_pin_connlist(edev, pin); |
| 407 | if (ret < 0) |
| 408 | return NULL; |
| 409 | |
| 410 | for (i = 0; i < pin->num_mux_nids; i++) { |
| 411 | if (pin->mux_nids[i] == cvt->nid) |
| 412 | return pin; |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | return NULL; |
| 417 | } |
| 418 | |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 419 | /* |
| 420 | * This tries to get a valid pin and set the HW constraints based on the |
| 421 | * ELD. Even if a valid pin is not found return success so that device open |
| 422 | * doesn't fail. |
| 423 | */ |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 424 | static int hdac_hdmi_pcm_open(struct snd_pcm_substream *substream, |
| 425 | struct snd_soc_dai *dai) |
| 426 | { |
| 427 | struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai); |
| 428 | struct hdac_hdmi_priv *hdmi = hdac->private_data; |
| 429 | struct hdac_hdmi_dai_pin_map *dai_map; |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 430 | struct hdac_hdmi_cvt *cvt; |
| 431 | struct hdac_hdmi_pin *pin; |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 432 | int ret; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 433 | |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 434 | dai_map = &hdmi->dai_map[dai->id]; |
| 435 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 436 | cvt = dai_map->cvt; |
| 437 | pin = hdac_hdmi_get_pin_from_cvt(hdac, hdmi, cvt); |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 438 | |
| 439 | /* |
| 440 | * To make PA and other userland happy. |
| 441 | * userland scans devices so returning error does not help. |
| 442 | */ |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 443 | if (!pin) |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 444 | return 0; |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 445 | |
| 446 | if ((!pin->eld.monitor_present) || |
| 447 | (!pin->eld.eld_valid)) { |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 448 | |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 449 | dev_warn(&hdac->hdac.dev, |
Colin Ian King | 3fb7b4e | 2016-08-26 19:17:25 +0100 | [diff] [blame] | 450 | "Failed: monitor present? %d ELD valid?: %d for pin: %d\n", |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 451 | pin->eld.monitor_present, pin->eld.eld_valid, pin->nid); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 452 | |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 453 | return 0; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 454 | } |
| 455 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 456 | dai_map->pin = pin; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 457 | |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 458 | ret = hdac_hdmi_eld_limit_formats(substream->runtime, |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 459 | pin->eld.eld_buffer); |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 460 | if (ret < 0) |
| 461 | return ret; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 462 | |
Subhransu S. Prusty | 2428bca | 2016-02-12 07:46:02 +0530 | [diff] [blame] | 463 | return snd_pcm_hw_constraint_eld(substream->runtime, |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 464 | pin->eld.eld_buffer); |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | static void hdac_hdmi_pcm_close(struct snd_pcm_substream *substream, |
| 468 | struct snd_soc_dai *dai) |
| 469 | { |
| 470 | struct hdac_ext_device *hdac = snd_soc_dai_get_drvdata(dai); |
| 471 | struct hdac_hdmi_priv *hdmi = hdac->private_data; |
| 472 | struct hdac_hdmi_dai_pin_map *dai_map; |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 473 | struct hdac_hdmi_pcm *pcm; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 474 | |
| 475 | dai_map = &hdmi->dai_map[dai->id]; |
| 476 | |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 477 | pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt); |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 478 | |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 479 | if (pcm) { |
| 480 | mutex_lock(&pcm->lock); |
| 481 | pcm->chmap_set = false; |
| 482 | memset(pcm->chmap, 0, sizeof(pcm->chmap)); |
| 483 | pcm->channels = 0; |
| 484 | mutex_unlock(&pcm->lock); |
Subhransu S. Prusty | 54dfa1e | 2016-02-17 21:34:00 +0530 | [diff] [blame] | 485 | } |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 486 | |
| 487 | if (dai_map->pin) |
| 488 | dai_map->pin = NULL; |
Subhransu S. Prusty | b0362ad | 2015-11-10 18:42:08 +0530 | [diff] [blame] | 489 | } |
| 490 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 491 | static int |
| 492 | hdac_hdmi_query_cvt_params(struct hdac_device *hdac, struct hdac_hdmi_cvt *cvt) |
| 493 | { |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 494 | unsigned int chans; |
| 495 | struct hdac_ext_device *edev = to_ehdac_device(hdac); |
| 496 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 497 | int err; |
| 498 | |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 499 | chans = get_wcaps(hdac, cvt->nid); |
| 500 | chans = get_wcaps_channels(chans); |
| 501 | |
| 502 | cvt->params.channels_min = 2; |
| 503 | |
| 504 | cvt->params.channels_max = chans; |
| 505 | if (chans > hdmi->chmap.channels_max) |
| 506 | hdmi->chmap.channels_max = chans; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 507 | |
| 508 | err = snd_hdac_query_supported_pcm(hdac, cvt->nid, |
| 509 | &cvt->params.rates, |
| 510 | &cvt->params.formats, |
| 511 | &cvt->params.maxbps); |
| 512 | if (err < 0) |
| 513 | dev_err(&hdac->dev, |
| 514 | "Failed to query pcm params for nid %d: %d\n", |
| 515 | cvt->nid, err); |
| 516 | |
| 517 | return err; |
| 518 | } |
| 519 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 520 | static int hdac_hdmi_fill_widget_info(struct device *dev, |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 521 | struct snd_soc_dapm_widget *w, enum snd_soc_dapm_type id, |
| 522 | void *priv, const char *wname, const char *stream, |
| 523 | struct snd_kcontrol_new *wc, int numkc, |
| 524 | int (*event)(struct snd_soc_dapm_widget *, |
| 525 | struct snd_kcontrol *, int), unsigned short event_flags) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 526 | { |
| 527 | w->id = id; |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 528 | w->name = devm_kstrdup(dev, wname, GFP_KERNEL); |
| 529 | if (!w->name) |
| 530 | return -ENOMEM; |
| 531 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 532 | w->sname = stream; |
| 533 | w->reg = SND_SOC_NOPM; |
| 534 | w->shift = 0; |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 535 | w->kcontrol_news = wc; |
| 536 | w->num_kcontrols = numkc; |
| 537 | w->priv = priv; |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 538 | w->event = event; |
| 539 | w->event_flags = event_flags; |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 540 | |
| 541 | return 0; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | static void hdac_hdmi_fill_route(struct snd_soc_dapm_route *route, |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 545 | const char *sink, const char *control, const char *src, |
| 546 | int (*handler)(struct snd_soc_dapm_widget *src, |
| 547 | struct snd_soc_dapm_widget *sink)) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 548 | { |
| 549 | route->sink = sink; |
| 550 | route->source = src; |
| 551 | route->control = control; |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 552 | route->connected = handler; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 553 | } |
| 554 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 555 | static struct hdac_hdmi_pcm *hdac_hdmi_get_pcm(struct hdac_ext_device *edev, |
| 556 | struct hdac_hdmi_pin *pin) |
| 557 | { |
| 558 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 559 | struct hdac_hdmi_pcm *pcm = NULL; |
| 560 | |
| 561 | list_for_each_entry(pcm, &hdmi->pcm_list, head) { |
| 562 | if (pcm->pin == pin) |
| 563 | return pcm; |
| 564 | } |
| 565 | |
| 566 | return NULL; |
| 567 | } |
| 568 | |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 569 | static void hdac_hdmi_set_power_state(struct hdac_ext_device *edev, |
| 570 | hda_nid_t nid, unsigned int pwr_state) |
| 571 | { |
| 572 | if (get_wcaps(&edev->hdac, nid) & AC_WCAP_POWER) { |
| 573 | if (!snd_hdac_check_power_state(&edev->hdac, nid, pwr_state)) |
| 574 | snd_hdac_codec_write(&edev->hdac, nid, 0, |
| 575 | AC_VERB_SET_POWER_STATE, pwr_state); |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | static void hdac_hdmi_set_amp(struct hdac_ext_device *edev, |
| 580 | hda_nid_t nid, int val) |
| 581 | { |
| 582 | if (get_wcaps(&edev->hdac, nid) & AC_WCAP_OUT_AMP) |
| 583 | snd_hdac_codec_write(&edev->hdac, nid, 0, |
| 584 | AC_VERB_SET_AMP_GAIN_MUTE, val); |
| 585 | } |
| 586 | |
| 587 | |
| 588 | static int hdac_hdmi_pin_output_widget_event(struct snd_soc_dapm_widget *w, |
| 589 | struct snd_kcontrol *kc, int event) |
| 590 | { |
| 591 | struct hdac_hdmi_pin *pin = w->priv; |
| 592 | struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev); |
| 593 | struct hdac_hdmi_pcm *pcm; |
| 594 | |
| 595 | dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n", |
| 596 | __func__, w->name, event); |
| 597 | |
| 598 | pcm = hdac_hdmi_get_pcm(edev, pin); |
| 599 | if (!pcm) |
| 600 | return -EIO; |
| 601 | |
| 602 | switch (event) { |
| 603 | case SND_SOC_DAPM_PRE_PMU: |
| 604 | hdac_hdmi_set_power_state(edev, pin->nid, AC_PWRST_D0); |
| 605 | |
| 606 | /* Enable out path for this pin widget */ |
| 607 | snd_hdac_codec_write(&edev->hdac, pin->nid, 0, |
| 608 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); |
| 609 | |
| 610 | hdac_hdmi_set_amp(edev, pin->nid, AMP_OUT_UNMUTE); |
| 611 | |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 612 | return hdac_hdmi_setup_audio_infoframe(edev, pcm, pin); |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 613 | |
| 614 | case SND_SOC_DAPM_POST_PMD: |
| 615 | hdac_hdmi_set_amp(edev, pin->nid, AMP_OUT_MUTE); |
| 616 | |
| 617 | /* Disable out path for this pin widget */ |
| 618 | snd_hdac_codec_write(&edev->hdac, pin->nid, 0, |
| 619 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 620 | |
| 621 | hdac_hdmi_set_power_state(edev, pin->nid, AC_PWRST_D3); |
| 622 | break; |
| 623 | |
| 624 | } |
| 625 | |
| 626 | return 0; |
| 627 | } |
| 628 | |
| 629 | static int hdac_hdmi_cvt_output_widget_event(struct snd_soc_dapm_widget *w, |
| 630 | struct snd_kcontrol *kc, int event) |
| 631 | { |
| 632 | struct hdac_hdmi_cvt *cvt = w->priv; |
| 633 | struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev); |
| 634 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 635 | struct hdac_hdmi_pcm *pcm; |
| 636 | |
| 637 | dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n", |
| 638 | __func__, w->name, event); |
| 639 | |
| 640 | pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, cvt); |
| 641 | if (!pcm) |
| 642 | return -EIO; |
| 643 | |
| 644 | switch (event) { |
| 645 | case SND_SOC_DAPM_PRE_PMU: |
| 646 | hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D0); |
| 647 | |
| 648 | /* Enable transmission */ |
| 649 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 650 | AC_VERB_SET_DIGI_CONVERT_1, 1); |
| 651 | |
| 652 | /* Category Code (CC) to zero */ |
| 653 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 654 | AC_VERB_SET_DIGI_CONVERT_2, 0); |
| 655 | |
| 656 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 657 | AC_VERB_SET_CHANNEL_STREAMID, pcm->stream_tag); |
| 658 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 659 | AC_VERB_SET_STREAM_FORMAT, pcm->format); |
| 660 | break; |
| 661 | |
| 662 | case SND_SOC_DAPM_POST_PMD: |
| 663 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 664 | AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 665 | snd_hdac_codec_write(&edev->hdac, cvt->nid, 0, |
| 666 | AC_VERB_SET_STREAM_FORMAT, 0); |
| 667 | |
| 668 | hdac_hdmi_set_power_state(edev, cvt->nid, AC_PWRST_D3); |
| 669 | break; |
| 670 | |
| 671 | } |
| 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | static int hdac_hdmi_pin_mux_widget_event(struct snd_soc_dapm_widget *w, |
| 677 | struct snd_kcontrol *kc, int event) |
| 678 | { |
| 679 | struct hdac_hdmi_pin *pin = w->priv; |
| 680 | struct hdac_ext_device *edev = to_hda_ext_device(w->dapm->dev); |
| 681 | int mux_idx; |
| 682 | |
| 683 | dev_dbg(&edev->hdac.dev, "%s: widget: %s event: %x\n", |
| 684 | __func__, w->name, event); |
| 685 | |
| 686 | if (!kc) |
| 687 | kc = w->kcontrols[0]; |
| 688 | |
| 689 | mux_idx = dapm_kcontrol_get_value(kc); |
| 690 | if (mux_idx > 0) { |
| 691 | snd_hdac_codec_write(&edev->hdac, pin->nid, 0, |
| 692 | AC_VERB_SET_CONNECT_SEL, (mux_idx - 1)); |
| 693 | } |
| 694 | |
| 695 | return 0; |
| 696 | } |
| 697 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 698 | /* |
| 699 | * Based on user selection, map the PINs with the PCMs. |
| 700 | */ |
| 701 | static int hdac_hdmi_set_pin_mux(struct snd_kcontrol *kcontrol, |
| 702 | struct snd_ctl_elem_value *ucontrol) |
| 703 | { |
| 704 | int ret; |
| 705 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
| 706 | struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol); |
| 707 | struct snd_soc_dapm_context *dapm = w->dapm; |
| 708 | struct hdac_hdmi_pin *pin = w->priv; |
| 709 | struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev); |
| 710 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 711 | struct hdac_hdmi_pcm *pcm = NULL; |
| 712 | const char *cvt_name = e->texts[ucontrol->value.enumerated.item[0]]; |
| 713 | |
| 714 | ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol); |
| 715 | if (ret < 0) |
| 716 | return ret; |
| 717 | |
| 718 | mutex_lock(&hdmi->pin_mutex); |
| 719 | list_for_each_entry(pcm, &hdmi->pcm_list, head) { |
| 720 | if (pcm->pin == pin) |
| 721 | pcm->pin = NULL; |
| 722 | |
| 723 | /* |
| 724 | * Jack status is not reported during device probe as the |
| 725 | * PCMs are not registered by then. So report it here. |
| 726 | */ |
| 727 | if (!strcmp(cvt_name, pcm->cvt->name) && !pcm->pin) { |
| 728 | pcm->pin = pin; |
| 729 | if (pin->eld.monitor_present && pin->eld.eld_valid) { |
| 730 | dev_dbg(&edev->hdac.dev, |
| 731 | "jack report for pcm=%d\n", |
| 732 | pcm->pcm_id); |
| 733 | |
| 734 | snd_jack_report(pcm->jack, SND_JACK_AVOUT); |
| 735 | } |
| 736 | mutex_unlock(&hdmi->pin_mutex); |
| 737 | return ret; |
| 738 | } |
| 739 | } |
| 740 | mutex_unlock(&hdmi->pin_mutex); |
| 741 | |
| 742 | return ret; |
| 743 | } |
| 744 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 745 | /* |
| 746 | * Ideally the Mux inputs should be based on the num_muxs enumerated, but |
| 747 | * the display driver seem to be programming the connection list for the pin |
| 748 | * widget runtime. |
| 749 | * |
| 750 | * So programming all the possible inputs for the mux, the user has to take |
| 751 | * care of selecting the right one and leaving all other inputs selected to |
| 752 | * "NONE" |
| 753 | */ |
| 754 | static int hdac_hdmi_create_pin_muxs(struct hdac_ext_device *edev, |
| 755 | struct hdac_hdmi_pin *pin, |
| 756 | struct snd_soc_dapm_widget *widget, |
| 757 | const char *widget_name) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 758 | { |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 759 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 760 | struct snd_kcontrol_new *kc; |
| 761 | struct hdac_hdmi_cvt *cvt; |
| 762 | struct soc_enum *se; |
| 763 | char kc_name[NAME_SIZE]; |
| 764 | char mux_items[NAME_SIZE]; |
| 765 | /* To hold inputs to the Pin mux */ |
| 766 | char *items[HDA_MAX_CONNECTIONS]; |
| 767 | int i = 0; |
| 768 | int num_items = hdmi->num_cvt + 1; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 769 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 770 | kc = devm_kzalloc(&edev->hdac.dev, sizeof(*kc), GFP_KERNEL); |
| 771 | if (!kc) |
| 772 | return -ENOMEM; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 773 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 774 | se = devm_kzalloc(&edev->hdac.dev, sizeof(*se), GFP_KERNEL); |
| 775 | if (!se) |
| 776 | return -ENOMEM; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 777 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 778 | sprintf(kc_name, "Pin %d Input", pin->nid); |
| 779 | kc->name = devm_kstrdup(&edev->hdac.dev, kc_name, GFP_KERNEL); |
| 780 | if (!kc->name) |
| 781 | return -ENOMEM; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 782 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 783 | kc->private_value = (long)se; |
| 784 | kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 785 | kc->access = 0; |
| 786 | kc->info = snd_soc_info_enum_double; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 787 | kc->put = hdac_hdmi_set_pin_mux; |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 788 | kc->get = snd_soc_dapm_get_enum_double; |
| 789 | |
| 790 | se->reg = SND_SOC_NOPM; |
| 791 | |
| 792 | /* enum texts: ["NONE", "cvt #", "cvt #", ...] */ |
| 793 | se->items = num_items; |
| 794 | se->mask = roundup_pow_of_two(se->items) - 1; |
| 795 | |
| 796 | sprintf(mux_items, "NONE"); |
| 797 | items[i] = devm_kstrdup(&edev->hdac.dev, mux_items, GFP_KERNEL); |
| 798 | if (!items[i]) |
| 799 | return -ENOMEM; |
| 800 | |
| 801 | list_for_each_entry(cvt, &hdmi->cvt_list, head) { |
| 802 | i++; |
| 803 | sprintf(mux_items, "cvt %d", cvt->nid); |
| 804 | items[i] = devm_kstrdup(&edev->hdac.dev, mux_items, GFP_KERNEL); |
| 805 | if (!items[i]) |
| 806 | return -ENOMEM; |
| 807 | } |
| 808 | |
| 809 | se->texts = devm_kmemdup(&edev->hdac.dev, items, |
| 810 | (num_items * sizeof(char *)), GFP_KERNEL); |
| 811 | if (!se->texts) |
| 812 | return -ENOMEM; |
| 813 | |
| 814 | return hdac_hdmi_fill_widget_info(&edev->hdac.dev, widget, |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 815 | snd_soc_dapm_mux, pin, widget_name, NULL, kc, 1, |
| 816 | hdac_hdmi_pin_mux_widget_event, |
| 817 | SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_REG); |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | /* Add cvt <- input <- mux route map */ |
| 821 | static void hdac_hdmi_add_pinmux_cvt_route(struct hdac_ext_device *edev, |
| 822 | struct snd_soc_dapm_widget *widgets, |
| 823 | struct snd_soc_dapm_route *route, int rindex) |
| 824 | { |
| 825 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 826 | const struct snd_kcontrol_new *kc; |
| 827 | struct soc_enum *se; |
| 828 | int mux_index = hdmi->num_cvt + hdmi->num_pin; |
| 829 | int i, j; |
| 830 | |
| 831 | for (i = 0; i < hdmi->num_pin; i++) { |
| 832 | kc = widgets[mux_index].kcontrol_news; |
| 833 | se = (struct soc_enum *)kc->private_value; |
| 834 | for (j = 0; j < hdmi->num_cvt; j++) { |
| 835 | hdac_hdmi_fill_route(&route[rindex], |
| 836 | widgets[mux_index].name, |
| 837 | se->texts[j + 1], |
| 838 | widgets[j].name, NULL); |
| 839 | |
| 840 | rindex++; |
| 841 | } |
| 842 | |
| 843 | mux_index++; |
| 844 | } |
| 845 | } |
| 846 | |
| 847 | /* |
| 848 | * Widgets are added in the below sequence |
| 849 | * Converter widgets for num converters enumerated |
| 850 | * Pin widgets for num pins enumerated |
| 851 | * Pin mux widgets to represent connenction list of pin widget |
| 852 | * |
| 853 | * Total widgets elements = num_cvt + num_pin + num_pin; |
| 854 | * |
| 855 | * Routes are added as below: |
| 856 | * pin mux -> pin (based on num_pins) |
| 857 | * cvt -> "Input sel control" -> pin_mux |
| 858 | * |
| 859 | * Total route elements: |
| 860 | * num_pins + (pin_muxes * num_cvt) |
| 861 | */ |
| 862 | static int create_fill_widget_route_map(struct snd_soc_dapm_context *dapm) |
| 863 | { |
| 864 | struct snd_soc_dapm_widget *widgets; |
| 865 | struct snd_soc_dapm_route *route; |
| 866 | struct hdac_ext_device *edev = to_hda_ext_device(dapm->dev); |
| 867 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 868 | struct snd_soc_dai_driver *dai_drv = dapm->component->dai_drv; |
| 869 | char widget_name[NAME_SIZE]; |
| 870 | struct hdac_hdmi_cvt *cvt; |
| 871 | struct hdac_hdmi_pin *pin; |
| 872 | int ret, i = 0, num_routes = 0; |
| 873 | |
| 874 | if (list_empty(&hdmi->cvt_list) || list_empty(&hdmi->pin_list)) |
| 875 | return -EINVAL; |
| 876 | |
| 877 | widgets = devm_kzalloc(dapm->dev, |
| 878 | (sizeof(*widgets) * ((2 * hdmi->num_pin) + hdmi->num_cvt)), |
| 879 | GFP_KERNEL); |
| 880 | |
| 881 | if (!widgets) |
| 882 | return -ENOMEM; |
| 883 | |
| 884 | /* DAPM widgets to represent each converter widget */ |
| 885 | list_for_each_entry(cvt, &hdmi->cvt_list, head) { |
| 886 | sprintf(widget_name, "Converter %d", cvt->nid); |
| 887 | ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i], |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 888 | snd_soc_dapm_aif_in, cvt, |
| 889 | widget_name, dai_drv[i].playback.stream_name, NULL, 0, |
| 890 | hdac_hdmi_cvt_output_widget_event, |
| 891 | SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD); |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 892 | if (ret < 0) |
| 893 | return ret; |
| 894 | i++; |
| 895 | } |
| 896 | |
| 897 | list_for_each_entry(pin, &hdmi->pin_list, head) { |
| 898 | sprintf(widget_name, "hif%d Output", pin->nid); |
| 899 | ret = hdac_hdmi_fill_widget_info(dapm->dev, &widgets[i], |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 900 | snd_soc_dapm_output, pin, |
| 901 | widget_name, NULL, NULL, 0, |
| 902 | hdac_hdmi_pin_output_widget_event, |
| 903 | SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD); |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 904 | if (ret < 0) |
| 905 | return ret; |
| 906 | i++; |
| 907 | } |
| 908 | |
| 909 | /* DAPM widgets to represent the connection list to pin widget */ |
| 910 | list_for_each_entry(pin, &hdmi->pin_list, head) { |
| 911 | sprintf(widget_name, "Pin %d Mux", pin->nid); |
| 912 | ret = hdac_hdmi_create_pin_muxs(edev, pin, &widgets[i], |
| 913 | widget_name); |
| 914 | if (ret < 0) |
| 915 | return ret; |
| 916 | i++; |
| 917 | |
| 918 | /* For cvt to pin_mux mapping */ |
| 919 | num_routes += hdmi->num_cvt; |
| 920 | |
| 921 | /* For pin_mux to pin mapping */ |
| 922 | num_routes++; |
| 923 | } |
| 924 | |
| 925 | route = devm_kzalloc(dapm->dev, (sizeof(*route) * num_routes), |
| 926 | GFP_KERNEL); |
| 927 | if (!route) |
| 928 | return -ENOMEM; |
| 929 | |
| 930 | i = 0; |
| 931 | /* Add pin <- NULL <- mux route map */ |
| 932 | list_for_each_entry(pin, &hdmi->pin_list, head) { |
| 933 | int sink_index = i + hdmi->num_cvt; |
| 934 | int src_index = sink_index + hdmi->num_pin; |
| 935 | |
| 936 | hdac_hdmi_fill_route(&route[i], |
| 937 | widgets[sink_index].name, NULL, |
| 938 | widgets[src_index].name, NULL); |
| 939 | i++; |
| 940 | |
| 941 | } |
| 942 | |
| 943 | hdac_hdmi_add_pinmux_cvt_route(edev, widgets, route, i); |
| 944 | |
| 945 | snd_soc_dapm_new_controls(dapm, widgets, |
| 946 | ((2 * hdmi->num_pin) + hdmi->num_cvt)); |
| 947 | |
| 948 | snd_soc_dapm_add_routes(dapm, route, num_routes); |
| 949 | snd_soc_dapm_new_widgets(dapm->card); |
| 950 | |
| 951 | return 0; |
| 952 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 953 | } |
| 954 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 955 | static int hdac_hdmi_init_dai_map(struct hdac_ext_device *edev) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 956 | { |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 957 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 958 | struct hdac_hdmi_dai_pin_map *dai_map; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 959 | struct hdac_hdmi_cvt *cvt; |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 960 | int dai_id = 0; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 961 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 962 | if (list_empty(&hdmi->cvt_list)) |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 963 | return -EINVAL; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 964 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 965 | list_for_each_entry(cvt, &hdmi->cvt_list, head) { |
| 966 | dai_map = &hdmi->dai_map[dai_id]; |
| 967 | dai_map->dai_id = dai_id; |
| 968 | dai_map->cvt = cvt; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 969 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 970 | dai_id++; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 971 | |
Subhransu S. Prusty | 148569f | 2016-02-12 07:46:07 +0530 | [diff] [blame] | 972 | if (dai_id == HDA_MAX_CVTS) { |
| 973 | dev_warn(&edev->hdac.dev, |
| 974 | "Max dais supported: %d\n", dai_id); |
| 975 | break; |
| 976 | } |
| 977 | } |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 978 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 979 | return 0; |
| 980 | } |
| 981 | |
| 982 | static int hdac_hdmi_add_cvt(struct hdac_ext_device *edev, hda_nid_t nid) |
| 983 | { |
| 984 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 985 | struct hdac_hdmi_cvt *cvt; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 986 | char name[NAME_SIZE]; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 987 | |
| 988 | cvt = kzalloc(sizeof(*cvt), GFP_KERNEL); |
| 989 | if (!cvt) |
| 990 | return -ENOMEM; |
| 991 | |
| 992 | cvt->nid = nid; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 993 | sprintf(name, "cvt %d", cvt->nid); |
| 994 | cvt->name = kstrdup(name, GFP_KERNEL); |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 995 | |
| 996 | list_add_tail(&cvt->head, &hdmi->cvt_list); |
| 997 | hdmi->num_cvt++; |
| 998 | |
| 999 | return hdac_hdmi_query_cvt_params(&edev->hdac, cvt); |
| 1000 | } |
| 1001 | |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1002 | static int hdac_hdmi_parse_eld(struct hdac_ext_device *edev, |
Subhransu S. Prusty | b7756ed | 2016-04-14 10:07:28 +0530 | [diff] [blame] | 1003 | struct hdac_hdmi_pin *pin) |
| 1004 | { |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1005 | unsigned int ver, mnl; |
| 1006 | |
| 1007 | ver = (pin->eld.eld_buffer[DRM_ELD_VER] & DRM_ELD_VER_MASK) |
| 1008 | >> DRM_ELD_VER_SHIFT; |
| 1009 | |
| 1010 | if (ver != ELD_VER_CEA_861D && ver != ELD_VER_PARTIAL) { |
| 1011 | dev_err(&edev->hdac.dev, "HDMI: Unknown ELD version %d\n", ver); |
| 1012 | return -EINVAL; |
| 1013 | } |
| 1014 | |
| 1015 | mnl = (pin->eld.eld_buffer[DRM_ELD_CEA_EDID_VER_MNL] & |
| 1016 | DRM_ELD_MNL_MASK) >> DRM_ELD_MNL_SHIFT; |
| 1017 | |
| 1018 | if (mnl > ELD_MAX_MNL) { |
| 1019 | dev_err(&edev->hdac.dev, "HDMI: MNL Invalid %d\n", mnl); |
| 1020 | return -EINVAL; |
| 1021 | } |
| 1022 | |
Subhransu S. Prusty | b7756ed | 2016-04-14 10:07:28 +0530 | [diff] [blame] | 1023 | pin->eld.info.spk_alloc = pin->eld.eld_buffer[DRM_ELD_SPEAKER]; |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1024 | |
| 1025 | return 0; |
Subhransu S. Prusty | b7756ed | 2016-04-14 10:07:28 +0530 | [diff] [blame] | 1026 | } |
| 1027 | |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1028 | static void hdac_hdmi_present_sense(struct hdac_hdmi_pin *pin) |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1029 | { |
| 1030 | struct hdac_ext_device *edev = pin->edev; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1031 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1032 | struct hdac_hdmi_pcm *pcm; |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1033 | int size; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1034 | |
| 1035 | mutex_lock(&hdmi->pin_mutex); |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1036 | pin->eld.monitor_present = false; |
| 1037 | |
| 1038 | size = snd_hdac_acomp_get_eld(&edev->hdac, pin->nid, -1, |
| 1039 | &pin->eld.monitor_present, pin->eld.eld_buffer, |
| 1040 | ELD_MAX_SIZE); |
| 1041 | |
| 1042 | if (size > 0) { |
| 1043 | size = min(size, ELD_MAX_SIZE); |
| 1044 | if (hdac_hdmi_parse_eld(edev, pin) < 0) |
| 1045 | size = -EINVAL; |
| 1046 | } |
| 1047 | |
| 1048 | if (size > 0) { |
| 1049 | pin->eld.eld_valid = true; |
| 1050 | pin->eld.eld_size = size; |
| 1051 | } else { |
| 1052 | pin->eld.eld_valid = false; |
| 1053 | pin->eld.eld_size = 0; |
| 1054 | } |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1055 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1056 | pcm = hdac_hdmi_get_pcm(edev, pin); |
| 1057 | |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1058 | if (!pin->eld.monitor_present || !pin->eld.eld_valid) { |
| 1059 | |
| 1060 | dev_dbg(&edev->hdac.dev, "%s: disconnect for pin %d\n", |
| 1061 | __func__, pin->nid); |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1062 | |
| 1063 | /* |
| 1064 | * PCMs are not registered during device probe, so don't |
| 1065 | * report jack here. It will be done in usermode mux |
| 1066 | * control select. |
| 1067 | */ |
| 1068 | if (pcm) { |
| 1069 | dev_dbg(&edev->hdac.dev, |
| 1070 | "jack report for pcm=%d\n", pcm->pcm_id); |
| 1071 | |
| 1072 | snd_jack_report(pcm->jack, 0); |
| 1073 | } |
| 1074 | |
| 1075 | mutex_unlock(&hdmi->pin_mutex); |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1076 | return; |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | if (pin->eld.monitor_present && pin->eld.eld_valid) { |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1080 | if (pcm) { |
| 1081 | dev_dbg(&edev->hdac.dev, |
| 1082 | "jack report for pcm=%d\n", |
| 1083 | pcm->pcm_id); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1084 | |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1085 | snd_jack_report(pcm->jack, SND_JACK_AVOUT); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1086 | } |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1087 | |
| 1088 | print_hex_dump_debug("ELD: ", DUMP_PREFIX_OFFSET, 16, 1, |
| 1089 | pin->eld.eld_buffer, pin->eld.eld_size, false); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1090 | } |
| 1091 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1092 | mutex_unlock(&hdmi->pin_mutex); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1093 | } |
| 1094 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1095 | static int hdac_hdmi_add_pin(struct hdac_ext_device *edev, hda_nid_t nid) |
| 1096 | { |
| 1097 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1098 | struct hdac_hdmi_pin *pin; |
| 1099 | |
| 1100 | pin = kzalloc(sizeof(*pin), GFP_KERNEL); |
| 1101 | if (!pin) |
| 1102 | return -ENOMEM; |
| 1103 | |
| 1104 | pin->nid = nid; |
| 1105 | |
| 1106 | list_add_tail(&pin->head, &hdmi->pin_list); |
| 1107 | hdmi->num_pin++; |
| 1108 | |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1109 | pin->edev = edev; |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1110 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1111 | return 0; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1112 | } |
| 1113 | |
Subhransu S. Prusty | 211caab | 2016-02-12 07:46:03 +0530 | [diff] [blame] | 1114 | #define INTEL_VENDOR_NID 0x08 |
| 1115 | #define INTEL_GET_VENDOR_VERB 0xf81 |
| 1116 | #define INTEL_SET_VENDOR_VERB 0x781 |
| 1117 | #define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */ |
| 1118 | #define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */ |
| 1119 | |
| 1120 | static void hdac_hdmi_skl_enable_all_pins(struct hdac_device *hdac) |
| 1121 | { |
| 1122 | unsigned int vendor_param; |
| 1123 | |
| 1124 | vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0, |
| 1125 | INTEL_GET_VENDOR_VERB, 0); |
| 1126 | if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS) |
| 1127 | return; |
| 1128 | |
| 1129 | vendor_param |= INTEL_EN_ALL_PIN_CVTS; |
| 1130 | vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0, |
| 1131 | INTEL_SET_VENDOR_VERB, vendor_param); |
| 1132 | if (vendor_param == -1) |
| 1133 | return; |
| 1134 | } |
| 1135 | |
| 1136 | static void hdac_hdmi_skl_enable_dp12(struct hdac_device *hdac) |
| 1137 | { |
| 1138 | unsigned int vendor_param; |
| 1139 | |
| 1140 | vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0, |
| 1141 | INTEL_GET_VENDOR_VERB, 0); |
| 1142 | if (vendor_param == -1 || vendor_param & INTEL_EN_DP12) |
| 1143 | return; |
| 1144 | |
| 1145 | /* enable DP1.2 mode */ |
| 1146 | vendor_param |= INTEL_EN_DP12; |
| 1147 | vendor_param = snd_hdac_codec_read(hdac, INTEL_VENDOR_NID, 0, |
| 1148 | INTEL_SET_VENDOR_VERB, vendor_param); |
| 1149 | if (vendor_param == -1) |
| 1150 | return; |
| 1151 | |
| 1152 | } |
| 1153 | |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1154 | static struct snd_soc_dai_ops hdmi_dai_ops = { |
| 1155 | .startup = hdac_hdmi_pcm_open, |
| 1156 | .shutdown = hdac_hdmi_pcm_close, |
| 1157 | .hw_params = hdac_hdmi_set_hw_params, |
Jeeja KP | c9bfb5d | 2017-01-24 21:49:03 +0530 | [diff] [blame] | 1158 | .set_tdm_slot = hdac_hdmi_set_tdm_slot, |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1159 | }; |
| 1160 | |
| 1161 | /* |
| 1162 | * Each converter can support a stream independently. So a dai is created |
| 1163 | * based on the number of converter queried. |
| 1164 | */ |
| 1165 | static int hdac_hdmi_create_dais(struct hdac_device *hdac, |
| 1166 | struct snd_soc_dai_driver **dais, |
| 1167 | struct hdac_hdmi_priv *hdmi, int num_dais) |
| 1168 | { |
| 1169 | struct snd_soc_dai_driver *hdmi_dais; |
| 1170 | struct hdac_hdmi_cvt *cvt; |
| 1171 | char name[NAME_SIZE], dai_name[NAME_SIZE]; |
| 1172 | int i = 0; |
| 1173 | u32 rates, bps; |
| 1174 | unsigned int rate_max = 384000, rate_min = 8000; |
| 1175 | u64 formats; |
| 1176 | int ret; |
| 1177 | |
| 1178 | hdmi_dais = devm_kzalloc(&hdac->dev, |
| 1179 | (sizeof(*hdmi_dais) * num_dais), |
| 1180 | GFP_KERNEL); |
| 1181 | if (!hdmi_dais) |
| 1182 | return -ENOMEM; |
| 1183 | |
| 1184 | list_for_each_entry(cvt, &hdmi->cvt_list, head) { |
| 1185 | ret = snd_hdac_query_supported_pcm(hdac, cvt->nid, |
| 1186 | &rates, &formats, &bps); |
| 1187 | if (ret) |
| 1188 | return ret; |
| 1189 | |
| 1190 | sprintf(dai_name, "intel-hdmi-hifi%d", i+1); |
| 1191 | hdmi_dais[i].name = devm_kstrdup(&hdac->dev, |
| 1192 | dai_name, GFP_KERNEL); |
| 1193 | |
| 1194 | if (!hdmi_dais[i].name) |
| 1195 | return -ENOMEM; |
| 1196 | |
| 1197 | snprintf(name, sizeof(name), "hifi%d", i+1); |
| 1198 | hdmi_dais[i].playback.stream_name = |
| 1199 | devm_kstrdup(&hdac->dev, name, GFP_KERNEL); |
| 1200 | if (!hdmi_dais[i].playback.stream_name) |
| 1201 | return -ENOMEM; |
| 1202 | |
| 1203 | /* |
| 1204 | * Set caps based on capability queried from the converter. |
| 1205 | * It will be constrained runtime based on ELD queried. |
| 1206 | */ |
| 1207 | hdmi_dais[i].playback.formats = formats; |
| 1208 | hdmi_dais[i].playback.rates = rates; |
| 1209 | hdmi_dais[i].playback.rate_max = rate_max; |
| 1210 | hdmi_dais[i].playback.rate_min = rate_min; |
| 1211 | hdmi_dais[i].playback.channels_min = 2; |
| 1212 | hdmi_dais[i].playback.channels_max = 2; |
| 1213 | hdmi_dais[i].ops = &hdmi_dai_ops; |
| 1214 | |
| 1215 | i++; |
| 1216 | } |
| 1217 | |
| 1218 | *dais = hdmi_dais; |
| 1219 | |
| 1220 | return 0; |
| 1221 | } |
| 1222 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1223 | /* |
| 1224 | * Parse all nodes and store the cvt/pin nids in array |
| 1225 | * Add one time initialization for pin and cvt widgets |
| 1226 | */ |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1227 | static int hdac_hdmi_parse_and_map_nid(struct hdac_ext_device *edev, |
| 1228 | struct snd_soc_dai_driver **dais, int *num_dais) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1229 | { |
| 1230 | hda_nid_t nid; |
Sudip Mukherjee | 3c83ac2 | 2015-12-01 14:29:35 +0530 | [diff] [blame] | 1231 | int i, num_nodes; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1232 | struct hdac_device *hdac = &edev->hdac; |
| 1233 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1234 | int ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1235 | |
Subhransu S. Prusty | 211caab | 2016-02-12 07:46:03 +0530 | [diff] [blame] | 1236 | hdac_hdmi_skl_enable_all_pins(hdac); |
| 1237 | hdac_hdmi_skl_enable_dp12(hdac); |
| 1238 | |
Sudip Mukherjee | 3c83ac2 | 2015-12-01 14:29:35 +0530 | [diff] [blame] | 1239 | num_nodes = snd_hdac_get_sub_nodes(hdac, hdac->afg, &nid); |
Subhransu S. Prusty | 541140d | 2015-12-09 21:46:08 +0530 | [diff] [blame] | 1240 | if (!nid || num_nodes <= 0) { |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1241 | dev_warn(&hdac->dev, "HDMI: failed to get afg sub nodes\n"); |
| 1242 | return -EINVAL; |
| 1243 | } |
| 1244 | |
Sudip Mukherjee | 3c83ac2 | 2015-12-01 14:29:35 +0530 | [diff] [blame] | 1245 | hdac->num_nodes = num_nodes; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1246 | hdac->start_nid = nid; |
| 1247 | |
| 1248 | for (i = 0; i < hdac->num_nodes; i++, nid++) { |
| 1249 | unsigned int caps; |
| 1250 | unsigned int type; |
| 1251 | |
| 1252 | caps = get_wcaps(hdac, nid); |
| 1253 | type = get_wcaps_type(caps); |
| 1254 | |
| 1255 | if (!(caps & AC_WCAP_DIGITAL)) |
| 1256 | continue; |
| 1257 | |
| 1258 | switch (type) { |
| 1259 | |
| 1260 | case AC_WID_AUD_OUT: |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1261 | ret = hdac_hdmi_add_cvt(edev, nid); |
| 1262 | if (ret < 0) |
| 1263 | return ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1264 | break; |
| 1265 | |
| 1266 | case AC_WID_PIN: |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1267 | ret = hdac_hdmi_add_pin(edev, nid); |
| 1268 | if (ret < 0) |
| 1269 | return ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1270 | break; |
| 1271 | } |
| 1272 | } |
| 1273 | |
| 1274 | hdac->end_nid = nid; |
| 1275 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1276 | if (!hdmi->num_pin || !hdmi->num_cvt) |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1277 | return -EIO; |
| 1278 | |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1279 | ret = hdac_hdmi_create_dais(hdac, dais, hdmi, hdmi->num_cvt); |
| 1280 | if (ret) { |
| 1281 | dev_err(&hdac->dev, "Failed to create dais with err: %d\n", |
| 1282 | ret); |
| 1283 | return ret; |
| 1284 | } |
| 1285 | |
| 1286 | *num_dais = hdmi->num_cvt; |
| 1287 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1288 | return hdac_hdmi_init_dai_map(edev); |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1289 | } |
| 1290 | |
Pandiyan, Dhinakaran | f931894 | 2016-09-21 13:02:48 -0700 | [diff] [blame] | 1291 | static void hdac_hdmi_eld_notify_cb(void *aptr, int port, int pipe) |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1292 | { |
| 1293 | struct hdac_ext_device *edev = aptr; |
| 1294 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1295 | struct hdac_hdmi_pin *pin; |
| 1296 | struct snd_soc_codec *codec = edev->scodec; |
| 1297 | |
| 1298 | /* Don't know how this mapping is derived */ |
| 1299 | hda_nid_t pin_nid = port + 0x04; |
| 1300 | |
| 1301 | dev_dbg(&edev->hdac.dev, "%s: for pin: %d\n", __func__, pin_nid); |
| 1302 | |
| 1303 | /* |
| 1304 | * skip notification during system suspend (but not in runtime PM); |
| 1305 | * the state will be updated at resume. Also since the ELD and |
| 1306 | * connection states are updated in anyway at the end of the resume, |
| 1307 | * we can skip it when received during PM process. |
| 1308 | */ |
| 1309 | if (snd_power_get_state(codec->component.card->snd_card) != |
| 1310 | SNDRV_CTL_POWER_D0) |
| 1311 | return; |
| 1312 | |
| 1313 | if (atomic_read(&edev->hdac.in_pm)) |
| 1314 | return; |
| 1315 | |
| 1316 | list_for_each_entry(pin, &hdmi->pin_list, head) { |
| 1317 | if (pin->nid == pin_nid) |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1318 | hdac_hdmi_present_sense(pin); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1319 | } |
| 1320 | } |
| 1321 | |
| 1322 | static struct i915_audio_component_audio_ops aops = { |
| 1323 | .pin_eld_notify = hdac_hdmi_eld_notify_cb, |
| 1324 | }; |
| 1325 | |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1326 | static struct snd_pcm *hdac_hdmi_get_pcm_from_id(struct snd_soc_card *card, |
| 1327 | int device) |
| 1328 | { |
| 1329 | struct snd_soc_pcm_runtime *rtd; |
| 1330 | |
| 1331 | list_for_each_entry(rtd, &card->rtd_list, list) { |
| 1332 | if (rtd->pcm && (rtd->pcm->device == device)) |
| 1333 | return rtd->pcm; |
| 1334 | } |
| 1335 | |
| 1336 | return NULL; |
| 1337 | } |
| 1338 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1339 | int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int device) |
| 1340 | { |
| 1341 | char jack_name[NAME_SIZE]; |
| 1342 | struct snd_soc_codec *codec = dai->codec; |
| 1343 | struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec); |
| 1344 | struct snd_soc_dapm_context *dapm = |
| 1345 | snd_soc_component_get_dapm(&codec->component); |
| 1346 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1347 | struct hdac_hdmi_pcm *pcm; |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1348 | struct snd_pcm *snd_pcm; |
| 1349 | int err; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1350 | |
| 1351 | /* |
| 1352 | * this is a new PCM device, create new pcm and |
| 1353 | * add to the pcm list |
| 1354 | */ |
| 1355 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 1356 | if (!pcm) |
| 1357 | return -ENOMEM; |
| 1358 | pcm->pcm_id = device; |
| 1359 | pcm->cvt = hdmi->dai_map[dai->id].cvt; |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 1360 | mutex_init(&pcm->lock); |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1361 | |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1362 | snd_pcm = hdac_hdmi_get_pcm_from_id(dai->component->card, device); |
| 1363 | if (snd_pcm) { |
| 1364 | err = snd_hdac_add_chmap_ctls(snd_pcm, device, &hdmi->chmap); |
| 1365 | if (err < 0) { |
| 1366 | dev_err(&edev->hdac.dev, |
| 1367 | "chmap control add failed with err: %d for pcm: %d\n", |
| 1368 | err, device); |
| 1369 | kfree(pcm); |
| 1370 | return err; |
| 1371 | } |
| 1372 | } |
| 1373 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1374 | list_add_tail(&pcm->head, &hdmi->pcm_list); |
| 1375 | |
| 1376 | sprintf(jack_name, "HDMI/DP, pcm=%d Jack", device); |
| 1377 | |
| 1378 | return snd_jack_new(dapm->card->snd_card, jack_name, |
| 1379 | SND_JACK_AVOUT, &pcm->jack, true, false); |
| 1380 | } |
| 1381 | EXPORT_SYMBOL_GPL(hdac_hdmi_jack_init); |
| 1382 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1383 | static int hdmi_codec_probe(struct snd_soc_codec *codec) |
| 1384 | { |
| 1385 | struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec); |
| 1386 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1387 | struct snd_soc_dapm_context *dapm = |
| 1388 | snd_soc_component_get_dapm(&codec->component); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1389 | struct hdac_hdmi_pin *pin; |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1390 | struct hdac_ext_link *hlink = NULL; |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1391 | int ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1392 | |
| 1393 | edev->scodec = codec; |
| 1394 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1395 | /* |
| 1396 | * hold the ref while we probe, also no need to drop the ref on |
| 1397 | * exit, we call pm_runtime_suspend() so that will do for us |
| 1398 | */ |
| 1399 | hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdac.dev)); |
Vinod Koul | 500e06b | 2016-05-31 19:09:55 +0530 | [diff] [blame] | 1400 | if (!hlink) { |
| 1401 | dev_err(&edev->hdac.dev, "hdac link not found\n"); |
| 1402 | return -EIO; |
| 1403 | } |
| 1404 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1405 | snd_hdac_ext_bus_link_get(edev->ebus, hlink); |
| 1406 | |
Subhransu S. Prusty | 79f4e92 | 2016-02-12 07:46:05 +0530 | [diff] [blame] | 1407 | ret = create_fill_widget_route_map(dapm); |
| 1408 | if (ret < 0) |
| 1409 | return ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1410 | |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1411 | aops.audio_ptr = edev; |
| 1412 | ret = snd_hdac_i915_register_notifier(&aops); |
| 1413 | if (ret < 0) { |
| 1414 | dev_err(&edev->hdac.dev, "notifier register failed: err: %d\n", |
| 1415 | ret); |
| 1416 | return ret; |
| 1417 | } |
| 1418 | |
| 1419 | list_for_each_entry(pin, &hdmi->pin_list, head) |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1420 | hdac_hdmi_present_sense(pin); |
Subhransu S. Prusty | b8a5454 | 2016-02-12 07:46:01 +0530 | [diff] [blame] | 1421 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1422 | /* Imp: Store the card pointer in hda_codec */ |
| 1423 | edev->card = dapm->card->snd_card; |
| 1424 | |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1425 | /* |
| 1426 | * hdac_device core already sets the state to active and calls |
| 1427 | * get_noresume. So enable runtime and set the device to suspend. |
| 1428 | */ |
| 1429 | pm_runtime_enable(&edev->hdac.dev); |
| 1430 | pm_runtime_put(&edev->hdac.dev); |
| 1431 | pm_runtime_suspend(&edev->hdac.dev); |
| 1432 | |
| 1433 | return 0; |
| 1434 | } |
| 1435 | |
| 1436 | static int hdmi_codec_remove(struct snd_soc_codec *codec) |
| 1437 | { |
| 1438 | struct hdac_ext_device *edev = snd_soc_codec_get_drvdata(codec); |
| 1439 | |
| 1440 | pm_runtime_disable(&edev->hdac.dev); |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1441 | return 0; |
| 1442 | } |
| 1443 | |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1444 | #ifdef CONFIG_PM |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1445 | static int hdmi_codec_prepare(struct device *dev) |
| 1446 | { |
| 1447 | struct hdac_ext_device *edev = to_hda_ext_device(dev); |
| 1448 | struct hdac_device *hdac = &edev->hdac; |
| 1449 | |
| 1450 | pm_runtime_get_sync(&edev->hdac.dev); |
| 1451 | |
| 1452 | /* |
| 1453 | * Power down afg. |
| 1454 | * codec_read is preferred over codec_write to set the power state. |
| 1455 | * This way verb is send to set the power state and response |
| 1456 | * is received. So setting power state is ensured without using loop |
| 1457 | * to read the state. |
| 1458 | */ |
| 1459 | snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE, |
| 1460 | AC_PWRST_D3); |
| 1461 | |
| 1462 | return 0; |
| 1463 | } |
| 1464 | |
Subhransu S. Prusty | 0fee179 | 2016-04-01 13:36:25 +0530 | [diff] [blame] | 1465 | static void hdmi_codec_complete(struct device *dev) |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1466 | { |
Subhransu S. Prusty | 0fee179 | 2016-04-01 13:36:25 +0530 | [diff] [blame] | 1467 | struct hdac_ext_device *edev = to_hda_ext_device(dev); |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1468 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1469 | struct hdac_hdmi_pin *pin; |
| 1470 | struct hdac_device *hdac = &edev->hdac; |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1471 | |
| 1472 | /* Power up afg */ |
| 1473 | snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE, |
| 1474 | AC_PWRST_D0); |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1475 | |
| 1476 | hdac_hdmi_skl_enable_all_pins(&edev->hdac); |
| 1477 | hdac_hdmi_skl_enable_dp12(&edev->hdac); |
| 1478 | |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1479 | /* |
| 1480 | * As the ELD notify callback request is not entertained while the |
| 1481 | * device is in suspend state. Need to manually check detection of |
| 1482 | * all pins here. |
| 1483 | */ |
| 1484 | list_for_each_entry(pin, &hdmi->pin_list, head) |
Sandeep Tayal | f6fa11a | 2017-01-18 21:34:41 +0530 | [diff] [blame] | 1485 | hdac_hdmi_present_sense(pin); |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1486 | |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1487 | pm_runtime_put_sync(&edev->hdac.dev); |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1488 | } |
| 1489 | #else |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1490 | #define hdmi_codec_prepare NULL |
Subhransu S. Prusty | 0fee179 | 2016-04-01 13:36:25 +0530 | [diff] [blame] | 1491 | #define hdmi_codec_complete NULL |
Jeeja KP | 571d507 | 2016-02-22 07:50:33 +0530 | [diff] [blame] | 1492 | #endif |
| 1493 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1494 | static struct snd_soc_codec_driver hdmi_hda_codec = { |
| 1495 | .probe = hdmi_codec_probe, |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1496 | .remove = hdmi_codec_remove, |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1497 | .idle_bias_off = true, |
| 1498 | }; |
| 1499 | |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1500 | static void hdac_hdmi_get_chmap(struct hdac_device *hdac, int pcm_idx, |
| 1501 | unsigned char *chmap) |
| 1502 | { |
| 1503 | struct hdac_ext_device *edev = to_ehdac_device(hdac); |
| 1504 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1505 | struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx); |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1506 | |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 1507 | memcpy(chmap, pcm->chmap, ARRAY_SIZE(pcm->chmap)); |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1508 | } |
| 1509 | |
| 1510 | static void hdac_hdmi_set_chmap(struct hdac_device *hdac, int pcm_idx, |
| 1511 | unsigned char *chmap, int prepared) |
| 1512 | { |
| 1513 | struct hdac_ext_device *edev = to_ehdac_device(hdac); |
| 1514 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1515 | struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx); |
| 1516 | struct hdac_hdmi_pin *pin = pcm->pin; |
| 1517 | |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 1518 | mutex_lock(&pcm->lock); |
| 1519 | pcm->chmap_set = true; |
| 1520 | memcpy(pcm->chmap, chmap, ARRAY_SIZE(pcm->chmap)); |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1521 | if (prepared) |
Jeeja KP | ab1eea1 | 2017-01-24 21:49:05 +0530 | [diff] [blame^] | 1522 | hdac_hdmi_setup_audio_infoframe(edev, pcm, pin); |
| 1523 | mutex_unlock(&pcm->lock); |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | static bool is_hdac_hdmi_pcm_attached(struct hdac_device *hdac, int pcm_idx) |
| 1527 | { |
| 1528 | struct hdac_ext_device *edev = to_ehdac_device(hdac); |
| 1529 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1530 | struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx); |
| 1531 | struct hdac_hdmi_pin *pin = pcm->pin; |
| 1532 | |
| 1533 | return pin ? true:false; |
| 1534 | } |
| 1535 | |
| 1536 | static int hdac_hdmi_get_spk_alloc(struct hdac_device *hdac, int pcm_idx) |
| 1537 | { |
| 1538 | struct hdac_ext_device *edev = to_ehdac_device(hdac); |
| 1539 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1540 | struct hdac_hdmi_pcm *pcm = get_hdmi_pcm_from_id(hdmi, pcm_idx); |
| 1541 | struct hdac_hdmi_pin *pin = pcm->pin; |
| 1542 | |
Dan Carpenter | 8f65881 | 2016-05-03 10:42:58 +0300 | [diff] [blame] | 1543 | if (!pin || !pin->eld.eld_valid) |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1544 | return 0; |
| 1545 | |
| 1546 | return pin->eld.info.spk_alloc; |
| 1547 | } |
| 1548 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1549 | static int hdac_hdmi_dev_probe(struct hdac_ext_device *edev) |
| 1550 | { |
| 1551 | struct hdac_device *codec = &edev->hdac; |
| 1552 | struct hdac_hdmi_priv *hdmi_priv; |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1553 | struct snd_soc_dai_driver *hdmi_dais = NULL; |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1554 | struct hdac_ext_link *hlink = NULL; |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1555 | int num_dais = 0; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1556 | int ret = 0; |
| 1557 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1558 | /* hold the ref while we probe */ |
| 1559 | hlink = snd_hdac_ext_bus_get_link(edev->ebus, dev_name(&edev->hdac.dev)); |
Vinod Koul | 500e06b | 2016-05-31 19:09:55 +0530 | [diff] [blame] | 1560 | if (!hlink) { |
| 1561 | dev_err(&edev->hdac.dev, "hdac link not found\n"); |
| 1562 | return -EIO; |
| 1563 | } |
| 1564 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1565 | snd_hdac_ext_bus_link_get(edev->ebus, hlink); |
| 1566 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1567 | hdmi_priv = devm_kzalloc(&codec->dev, sizeof(*hdmi_priv), GFP_KERNEL); |
| 1568 | if (hdmi_priv == NULL) |
| 1569 | return -ENOMEM; |
| 1570 | |
| 1571 | edev->private_data = hdmi_priv; |
Subhransu S. Prusty | bcced70 | 2016-04-14 10:07:30 +0530 | [diff] [blame] | 1572 | snd_hdac_register_chmap_ops(codec, &hdmi_priv->chmap); |
Subhransu S. Prusty | 2889099 | 2016-04-14 10:07:34 +0530 | [diff] [blame] | 1573 | hdmi_priv->chmap.ops.get_chmap = hdac_hdmi_get_chmap; |
| 1574 | hdmi_priv->chmap.ops.set_chmap = hdac_hdmi_set_chmap; |
| 1575 | hdmi_priv->chmap.ops.is_pcm_attached = is_hdac_hdmi_pcm_attached; |
| 1576 | hdmi_priv->chmap.ops.get_spk_alloc = hdac_hdmi_get_spk_alloc; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1577 | |
| 1578 | dev_set_drvdata(&codec->dev, edev); |
| 1579 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1580 | INIT_LIST_HEAD(&hdmi_priv->pin_list); |
| 1581 | INIT_LIST_HEAD(&hdmi_priv->cvt_list); |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1582 | INIT_LIST_HEAD(&hdmi_priv->pcm_list); |
| 1583 | mutex_init(&hdmi_priv->pin_mutex); |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1584 | |
Ramesh Babu | aeaccef | 2016-02-17 21:34:01 +0530 | [diff] [blame] | 1585 | /* |
| 1586 | * Turned off in the runtime_suspend during the first explicit |
| 1587 | * pm_runtime_suspend call. |
| 1588 | */ |
| 1589 | ret = snd_hdac_display_power(edev->hdac.bus, true); |
| 1590 | if (ret < 0) { |
| 1591 | dev_err(&edev->hdac.dev, |
| 1592 | "Cannot turn on display power on i915 err: %d\n", |
| 1593 | ret); |
| 1594 | return ret; |
| 1595 | } |
| 1596 | |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1597 | ret = hdac_hdmi_parse_and_map_nid(edev, &hdmi_dais, &num_dais); |
| 1598 | if (ret < 0) { |
| 1599 | dev_err(&codec->dev, |
| 1600 | "Failed in parse and map nid with err: %d\n", ret); |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1601 | return ret; |
Subhransu S. Prusty | 17a42c4 | 2016-02-12 07:46:04 +0530 | [diff] [blame] | 1602 | } |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1603 | |
| 1604 | /* ASoC specific initialization */ |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1605 | ret = snd_soc_register_codec(&codec->dev, &hdmi_hda_codec, |
| 1606 | hdmi_dais, num_dais); |
| 1607 | |
| 1608 | snd_hdac_ext_bus_link_put(edev->ebus, hlink); |
| 1609 | |
| 1610 | return ret; |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | static int hdac_hdmi_dev_remove(struct hdac_ext_device *edev) |
| 1614 | { |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1615 | struct hdac_hdmi_priv *hdmi = edev->private_data; |
| 1616 | struct hdac_hdmi_pin *pin, *pin_next; |
| 1617 | struct hdac_hdmi_cvt *cvt, *cvt_next; |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1618 | struct hdac_hdmi_pcm *pcm, *pcm_next; |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1619 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1620 | snd_soc_unregister_codec(&edev->hdac.dev); |
| 1621 | |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1622 | list_for_each_entry_safe(pcm, pcm_next, &hdmi->pcm_list, head) { |
| 1623 | pcm->cvt = NULL; |
| 1624 | pcm->pin = NULL; |
| 1625 | list_del(&pcm->head); |
| 1626 | kfree(pcm); |
| 1627 | } |
| 1628 | |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1629 | list_for_each_entry_safe(cvt, cvt_next, &hdmi->cvt_list, head) { |
| 1630 | list_del(&cvt->head); |
Jeeja KP | 4a3478d | 2016-02-12 07:46:06 +0530 | [diff] [blame] | 1631 | kfree(cvt->name); |
Subhransu S. Prusty | 15b9144 | 2015-12-09 21:46:10 +0530 | [diff] [blame] | 1632 | kfree(cvt); |
| 1633 | } |
| 1634 | |
| 1635 | list_for_each_entry_safe(pin, pin_next, &hdmi->pin_list, head) { |
| 1636 | list_del(&pin->head); |
| 1637 | kfree(pin); |
| 1638 | } |
| 1639 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1640 | return 0; |
| 1641 | } |
| 1642 | |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1643 | #ifdef CONFIG_PM |
| 1644 | static int hdac_hdmi_runtime_suspend(struct device *dev) |
| 1645 | { |
| 1646 | struct hdac_ext_device *edev = to_hda_ext_device(dev); |
| 1647 | struct hdac_device *hdac = &edev->hdac; |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1648 | struct hdac_bus *bus = hdac->bus; |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1649 | struct hdac_ext_bus *ebus = hbus_to_ebus(bus); |
| 1650 | struct hdac_ext_link *hlink = NULL; |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1651 | int err; |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1652 | |
| 1653 | dev_dbg(dev, "Enter: %s\n", __func__); |
| 1654 | |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1655 | /* controller may not have been initialized for the first time */ |
| 1656 | if (!bus) |
| 1657 | return 0; |
| 1658 | |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1659 | /* |
| 1660 | * Power down afg. |
| 1661 | * codec_read is preferred over codec_write to set the power state. |
| 1662 | * This way verb is send to set the power state and response |
| 1663 | * is received. So setting power state is ensured without using loop |
| 1664 | * to read the state. |
| 1665 | */ |
| 1666 | snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE, |
| 1667 | AC_PWRST_D3); |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1668 | err = snd_hdac_display_power(bus, false); |
| 1669 | if (err < 0) { |
| 1670 | dev_err(bus->dev, "Cannot turn on display power on i915\n"); |
| 1671 | return err; |
| 1672 | } |
| 1673 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1674 | hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev)); |
Vinod Koul | 500e06b | 2016-05-31 19:09:55 +0530 | [diff] [blame] | 1675 | if (!hlink) { |
| 1676 | dev_err(dev, "hdac link not found\n"); |
| 1677 | return -EIO; |
| 1678 | } |
| 1679 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1680 | snd_hdac_ext_bus_link_put(ebus, hlink); |
| 1681 | |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1682 | return 0; |
| 1683 | } |
| 1684 | |
| 1685 | static int hdac_hdmi_runtime_resume(struct device *dev) |
| 1686 | { |
| 1687 | struct hdac_ext_device *edev = to_hda_ext_device(dev); |
| 1688 | struct hdac_device *hdac = &edev->hdac; |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1689 | struct hdac_bus *bus = hdac->bus; |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1690 | struct hdac_ext_bus *ebus = hbus_to_ebus(bus); |
| 1691 | struct hdac_ext_link *hlink = NULL; |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1692 | int err; |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1693 | |
| 1694 | dev_dbg(dev, "Enter: %s\n", __func__); |
| 1695 | |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1696 | /* controller may not have been initialized for the first time */ |
| 1697 | if (!bus) |
| 1698 | return 0; |
| 1699 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1700 | hlink = snd_hdac_ext_bus_get_link(ebus, dev_name(dev)); |
Vinod Koul | 500e06b | 2016-05-31 19:09:55 +0530 | [diff] [blame] | 1701 | if (!hlink) { |
| 1702 | dev_err(dev, "hdac link not found\n"); |
| 1703 | return -EIO; |
| 1704 | } |
| 1705 | |
Vinod Koul | b2047e9 | 2016-05-12 08:58:55 +0530 | [diff] [blame] | 1706 | snd_hdac_ext_bus_link_get(ebus, hlink); |
| 1707 | |
Subhransu S. Prusty | 07f083a | 2015-11-10 18:42:10 +0530 | [diff] [blame] | 1708 | err = snd_hdac_display_power(bus, true); |
| 1709 | if (err < 0) { |
| 1710 | dev_err(bus->dev, "Cannot turn on display power on i915\n"); |
| 1711 | return err; |
| 1712 | } |
| 1713 | |
Subhransu S. Prusty | ab85f5b | 2016-02-17 21:34:02 +0530 | [diff] [blame] | 1714 | hdac_hdmi_skl_enable_all_pins(&edev->hdac); |
| 1715 | hdac_hdmi_skl_enable_dp12(&edev->hdac); |
| 1716 | |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1717 | /* Power up afg */ |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1718 | snd_hdac_codec_read(hdac, hdac->afg, 0, AC_VERB_SET_POWER_STATE, |
| 1719 | AC_PWRST_D0); |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1720 | |
| 1721 | return 0; |
| 1722 | } |
| 1723 | #else |
| 1724 | #define hdac_hdmi_runtime_suspend NULL |
| 1725 | #define hdac_hdmi_runtime_resume NULL |
| 1726 | #endif |
| 1727 | |
| 1728 | static const struct dev_pm_ops hdac_hdmi_pm = { |
| 1729 | SET_RUNTIME_PM_OPS(hdac_hdmi_runtime_suspend, hdac_hdmi_runtime_resume, NULL) |
Subhransu S. Prusty | 1b377cc | 2016-04-01 13:36:26 +0530 | [diff] [blame] | 1730 | .prepare = hdmi_codec_prepare, |
Subhransu S. Prusty | 0fee179 | 2016-04-01 13:36:25 +0530 | [diff] [blame] | 1731 | .complete = hdmi_codec_complete, |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1732 | }; |
| 1733 | |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1734 | static const struct hda_device_id hdmi_list[] = { |
| 1735 | HDA_CODEC_EXT_ENTRY(0x80862809, 0x100000, "Skylake HDMI", 0), |
Jeeja KP | e230480 | 2016-03-11 10:12:55 +0530 | [diff] [blame] | 1736 | HDA_CODEC_EXT_ENTRY(0x8086280a, 0x100000, "Broxton HDMI", 0), |
Shreyas NC | cc21688 | 2016-07-11 22:02:09 +0530 | [diff] [blame] | 1737 | HDA_CODEC_EXT_ENTRY(0x8086280b, 0x100000, "Kabylake HDMI", 0), |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1738 | {} |
| 1739 | }; |
| 1740 | |
| 1741 | MODULE_DEVICE_TABLE(hdaudio, hdmi_list); |
| 1742 | |
| 1743 | static struct hdac_ext_driver hdmi_driver = { |
| 1744 | . hdac = { |
| 1745 | .driver = { |
| 1746 | .name = "HDMI HDA Codec", |
Subhransu S. Prusty | e342ac0 | 2015-11-10 18:42:07 +0530 | [diff] [blame] | 1747 | .pm = &hdac_hdmi_pm, |
Subhransu S. Prusty | 18382ea | 2015-11-10 18:42:06 +0530 | [diff] [blame] | 1748 | }, |
| 1749 | .id_table = hdmi_list, |
| 1750 | }, |
| 1751 | .probe = hdac_hdmi_dev_probe, |
| 1752 | .remove = hdac_hdmi_dev_remove, |
| 1753 | }; |
| 1754 | |
| 1755 | static int __init hdmi_init(void) |
| 1756 | { |
| 1757 | return snd_hda_ext_driver_register(&hdmi_driver); |
| 1758 | } |
| 1759 | |
| 1760 | static void __exit hdmi_exit(void) |
| 1761 | { |
| 1762 | snd_hda_ext_driver_unregister(&hdmi_driver); |
| 1763 | } |
| 1764 | |
| 1765 | module_init(hdmi_init); |
| 1766 | module_exit(hdmi_exit); |
| 1767 | |
| 1768 | MODULE_LICENSE("GPL v2"); |
| 1769 | MODULE_DESCRIPTION("HDMI HD codec"); |
| 1770 | MODULE_AUTHOR("Samreen Nilofer<samreen.nilofer@intel.com>"); |
| 1771 | MODULE_AUTHOR("Subhransu S. Prusty<subhransu.s.prusty@intel.com>"); |