blob: cbe818eda3363c0f0595c3496e980f64343776d6 [file] [log] [blame]
Mengdong Lin98d8fc62015-05-19 22:29:30 +08001/*
2 * hdac_i915.c - routines for sync between HD-A core and i915 display driver
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 */
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/pci.h>
18#include <linux/component.h>
19#include <drm/i915_component.h>
20#include <sound/core.h>
21#include <sound/hdaudio.h>
22#include <sound/hda_i915.h>
Takashi Iwaibb03ed22016-04-21 16:39:17 +020023#include <sound/hda_register.h>
Mengdong Lin98d8fc62015-05-19 22:29:30 +080024
25static struct i915_audio_component *hdac_acomp;
26
Takashi Iwai78dd5e22015-10-28 12:26:48 +010027/**
28 * snd_hdac_set_codec_wakeup - Enable / disable HDMI/DP codec wakeup
29 * @bus: HDA core bus
30 * @enable: enable or disable the wakeup
31 *
32 * This function is supposed to be used only by a HD-audio controller
33 * driver that needs the interaction with i915 graphics.
34 *
35 * This function should be called during the chip reset, also called at
36 * resume for updating STATESTS register read.
37 *
38 * Returns zero for success or a negative error code.
39 */
Mengdong Lin98d8fc62015-05-19 22:29:30 +080040int snd_hdac_set_codec_wakeup(struct hdac_bus *bus, bool enable)
41{
42 struct i915_audio_component *acomp = bus->audio_component;
43
Takashi Iwai692af902015-06-10 12:15:27 +020044 if (!acomp || !acomp->ops)
Mengdong Lin98d8fc62015-05-19 22:29:30 +080045 return -ENODEV;
46
47 if (!acomp->ops->codec_wake_override) {
48 dev_warn(bus->dev,
49 "Invalid codec wake callback\n");
50 return 0;
51 }
52
53 dev_dbg(bus->dev, "%s codec wakeup\n",
54 enable ? "enable" : "disable");
55
56 acomp->ops->codec_wake_override(acomp->dev, enable);
57
58 return 0;
59}
60EXPORT_SYMBOL_GPL(snd_hdac_set_codec_wakeup);
61
Takashi Iwai78dd5e22015-10-28 12:26:48 +010062/**
63 * snd_hdac_display_power - Power up / down the power refcount
64 * @bus: HDA core bus
65 * @enable: power up or down
66 *
67 * This function is supposed to be used only by a HD-audio controller
68 * driver that needs the interaction with i915 graphics.
69 *
70 * This function manages a refcount and calls the i915 get_power() and
71 * put_power() ops accordingly, toggling the codec wakeup, too.
72 *
73 * Returns zero for success or a negative error code.
74 */
Mengdong Lin98d8fc62015-05-19 22:29:30 +080075int snd_hdac_display_power(struct hdac_bus *bus, bool enable)
76{
77 struct i915_audio_component *acomp = bus->audio_component;
78
Takashi Iwai692af902015-06-10 12:15:27 +020079 if (!acomp || !acomp->ops)
Mengdong Lin98d8fc62015-05-19 22:29:30 +080080 return -ENODEV;
81
82 dev_dbg(bus->dev, "display power %s\n",
83 enable ? "enable" : "disable");
84
85 if (enable) {
David Henningsson033ea342015-07-16 10:39:24 +020086 if (!bus->i915_power_refcount++) {
Mengdong Lin98d8fc62015-05-19 22:29:30 +080087 acomp->ops->get_power(acomp->dev);
David Henningsson033ea342015-07-16 10:39:24 +020088 snd_hdac_set_codec_wakeup(bus, true);
89 snd_hdac_set_codec_wakeup(bus, false);
90 }
Mengdong Lin98d8fc62015-05-19 22:29:30 +080091 } else {
92 WARN_ON(!bus->i915_power_refcount);
93 if (!--bus->i915_power_refcount)
94 acomp->ops->put_power(acomp->dev);
95 }
96
97 return 0;
98}
99EXPORT_SYMBOL_GPL(snd_hdac_display_power);
100
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200101#define CONTROLLER_IN_GPU(pci) (((pci)->device == 0x0a0c) || \
102 ((pci)->device == 0x0c0c) || \
103 ((pci)->device == 0x0d0c) || \
104 ((pci)->device == 0x160c))
105
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100106/**
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200107 * snd_hdac_i915_set_bclk - Reprogram BCLK for HSW/BDW
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100108 * @bus: HDA core bus
109 *
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200110 * Intel HSW/BDW display HDA controller is in GPU. Both its power and link BCLK
111 * depends on GPU. Two Extended Mode registers EM4 (M value) and EM5 (N Value)
112 * are used to convert CDClk (Core Display Clock) to 24MHz BCLK:
113 * BCLK = CDCLK * M / N
114 * The values will be lost when the display power well is disabled and need to
115 * be restored to avoid abnormal playback speed.
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100116 *
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200117 * Call this function at initializing and changing power well, as well as
118 * at ELD notifier for the hotplug.
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100119 */
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200120void snd_hdac_i915_set_bclk(struct hdac_bus *bus)
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800121{
122 struct i915_audio_component *acomp = bus->audio_component;
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200123 struct pci_dev *pci = to_pci_dev(bus->dev);
124 int cdclk_freq;
125 unsigned int bclk_m, bclk_n;
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800126
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200127 if (!acomp || !acomp->ops || !acomp->ops->get_cdclk_freq)
128 return; /* only for i915 binding */
129 if (!CONTROLLER_IN_GPU(pci))
130 return; /* only HSW/BDW */
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800131
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200132 cdclk_freq = acomp->ops->get_cdclk_freq(acomp->dev);
133 switch (cdclk_freq) {
134 case 337500:
135 bclk_m = 16;
136 bclk_n = 225;
137 break;
138
139 case 450000:
140 default: /* default CDCLK 450MHz */
141 bclk_m = 4;
142 bclk_n = 75;
143 break;
144
145 case 540000:
146 bclk_m = 4;
147 bclk_n = 90;
148 break;
149
150 case 675000:
151 bclk_m = 8;
152 bclk_n = 225;
153 break;
154 }
155
156 snd_hdac_chip_writew(bus, HSW_EM4, bclk_m);
157 snd_hdac_chip_writew(bus, HSW_EM5, bclk_n);
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800158}
Takashi Iwaibb03ed22016-04-21 16:39:17 +0200159EXPORT_SYMBOL_GPL(snd_hdac_i915_set_bclk);
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800160
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100161/* There is a fixed mapping between audio pin node and display port.
162 * on SNB, IVY, HSW, BSW, SKL, BXT, KBL:
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100163 * Pin Widget 5 - PORT B (port = 1 in i915 driver)
164 * Pin Widget 6 - PORT C (port = 2 in i915 driver)
165 * Pin Widget 7 - PORT D (port = 3 in i915 driver)
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100166 *
167 * on VLV, ILK:
168 * Pin Widget 4 - PORT B (port = 1 in i915 driver)
169 * Pin Widget 5 - PORT C (port = 2 in i915 driver)
170 * Pin Widget 6 - PORT D (port = 3 in i915 driver)
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100171 */
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100172static int pin2port(struct hdac_device *codec, hda_nid_t pin_nid)
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100173{
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100174 int base_nid;
175
176 switch (codec->vendor_id) {
177 case 0x80860054: /* ILK */
178 case 0x80862804: /* ILK */
179 case 0x80862882: /* VLV */
180 base_nid = 3;
181 break;
182 default:
183 base_nid = 4;
184 break;
185 }
186
187 if (WARN_ON(pin_nid <= base_nid || pin_nid > base_nid + 3))
Takashi Iwai1a414f42016-03-10 15:49:35 +0100188 return -1;
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100189 return pin_nid - base_nid;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100190}
191
192/**
193 * snd_hdac_sync_audio_rate - Set N/CTS based on the sample rate
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100194 * @codec: HDA codec
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100195 * @nid: the pin widget NID
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700196 * @dev_id: device identifier
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100197 * @rate: the sample rate to set
198 *
199 * This function is supposed to be used only by a HD-audio controller
200 * driver that needs the interaction with i915 graphics.
201 *
202 * This function sets N/CTS value based on the given sample rate.
203 * Returns zero for success, or a negative error code.
204 */
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700205int snd_hdac_sync_audio_rate(struct hdac_device *codec, hda_nid_t nid,
206 int dev_id, int rate)
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100207{
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100208 struct hdac_bus *bus = codec->bus;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100209 struct i915_audio_component *acomp = bus->audio_component;
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700210 int port, pipe;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100211
212 if (!acomp || !acomp->ops || !acomp->ops->sync_audio_rate)
213 return -ENODEV;
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100214 port = pin2port(codec, nid);
Takashi Iwai1a414f42016-03-10 15:49:35 +0100215 if (port < 0)
216 return -EINVAL;
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700217 pipe = dev_id;
218 return acomp->ops->sync_audio_rate(acomp->dev, port, pipe, rate);
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100219}
220EXPORT_SYMBOL_GPL(snd_hdac_sync_audio_rate);
221
222/**
223 * snd_hdac_acomp_get_eld - Get the audio state and ELD via component
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100224 * @codec: HDA codec
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100225 * @nid: the pin widget NID
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700226 * @dev_id: device identifier
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100227 * @audio_enabled: the pointer to store the current audio state
228 * @buffer: the buffer pointer to store ELD bytes
229 * @max_bytes: the max bytes to be stored on @buffer
230 *
231 * This function is supposed to be used only by a HD-audio controller
232 * driver that needs the interaction with i915 graphics.
233 *
234 * This function queries the current state of the audio on the given
235 * digital port and fetches the ELD bytes onto the given buffer.
236 * It returns the number of bytes for the total ELD data, zero for
237 * invalid ELD, or a negative error code.
238 *
239 * The return size is the total bytes required for the whole ELD bytes,
240 * thus it may be over @max_bytes. If it's over @max_bytes, it implies
241 * that only a part of ELD bytes have been fetched.
242 */
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700243int snd_hdac_acomp_get_eld(struct hdac_device *codec, hda_nid_t nid, int dev_id,
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100244 bool *audio_enabled, char *buffer, int max_bytes)
245{
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100246 struct hdac_bus *bus = codec->bus;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100247 struct i915_audio_component *acomp = bus->audio_component;
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700248 int port, pipe;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100249
250 if (!acomp || !acomp->ops || !acomp->ops->get_eld)
251 return -ENODEV;
252
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100253 port = pin2port(codec, nid);
Takashi Iwai1a414f42016-03-10 15:49:35 +0100254 if (port < 0)
255 return -EINVAL;
Pandiyan, Dhinakaranf9318942016-09-21 13:02:48 -0700256
257 pipe = dev_id;
258 return acomp->ops->get_eld(acomp->dev, port, pipe, audio_enabled,
Takashi Iwaie2dc7d72015-12-01 12:39:38 +0100259 buffer, max_bytes);
260}
261EXPORT_SYMBOL_GPL(snd_hdac_acomp_get_eld);
262
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800263static int hdac_component_master_bind(struct device *dev)
264{
265 struct i915_audio_component *acomp = hdac_acomp;
266 int ret;
267
268 ret = component_bind_all(dev, acomp);
269 if (ret < 0)
270 return ret;
271
272 if (WARN_ON(!(acomp->dev && acomp->ops && acomp->ops->get_power &&
273 acomp->ops->put_power && acomp->ops->get_cdclk_freq))) {
274 ret = -EINVAL;
275 goto out_unbind;
276 }
277
278 /*
279 * Atm, we don't support dynamic unbinding initiated by the child
280 * component, so pin its containing module until we unbind.
281 */
282 if (!try_module_get(acomp->ops->owner)) {
283 ret = -ENODEV;
284 goto out_unbind;
285 }
286
287 return 0;
288
289out_unbind:
290 component_unbind_all(dev, acomp);
291
292 return ret;
293}
294
295static void hdac_component_master_unbind(struct device *dev)
296{
297 struct i915_audio_component *acomp = hdac_acomp;
298
299 module_put(acomp->ops->owner);
300 component_unbind_all(dev, acomp);
301 WARN_ON(acomp->ops || acomp->dev);
302}
303
304static const struct component_master_ops hdac_component_master_ops = {
305 .bind = hdac_component_master_bind,
306 .unbind = hdac_component_master_unbind,
307};
308
309static int hdac_component_master_match(struct device *dev, void *data)
310{
311 /* i915 is the only supported component */
312 return !strcmp(dev->driver->name, "i915");
313}
314
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100315/**
316 * snd_hdac_i915_register_notifier - Register i915 audio component ops
317 * @aops: i915 audio component ops
318 *
319 * This function is supposed to be used only by a HD-audio controller
320 * driver that needs the interaction with i915 graphics.
321 *
322 * This function sets the given ops to be called by the i915 graphics driver.
323 *
324 * Returns zero for success or a negative error code.
325 */
David Henningsson45c053d2015-08-19 10:48:57 +0200326int snd_hdac_i915_register_notifier(const struct i915_audio_component_audio_ops *aops)
327{
Takashi Iwaia36c2632017-12-22 10:45:07 +0100328 if (!hdac_acomp)
David Henningsson45c053d2015-08-19 10:48:57 +0200329 return -ENODEV;
330
331 hdac_acomp->audio_ops = aops;
332 return 0;
333}
334EXPORT_SYMBOL_GPL(snd_hdac_i915_register_notifier);
335
Takashi Iwaibfa5fb12016-03-29 15:03:06 +0200336/* check whether intel graphics is present */
337static bool i915_gfx_present(void)
338{
Arvind Yadav6c5a2662017-07-18 22:35:06 +0530339 static const struct pci_device_id ids[] = {
Takashi Iwaibfa5fb12016-03-29 15:03:06 +0200340 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
341 .class = PCI_BASE_CLASS_DISPLAY << 16,
342 .class_mask = 0xff << 16 },
343 {}
344 };
345 return pci_dev_present(ids);
346}
347
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100348/**
349 * snd_hdac_i915_init - Initialize i915 audio component
350 * @bus: HDA core bus
351 *
352 * This function is supposed to be used only by a HD-audio controller
353 * driver that needs the interaction with i915 graphics.
354 *
355 * This function initializes and sets up the audio component to communicate
356 * with i915 graphics driver.
357 *
358 * Returns zero for success or a negative error code.
359 */
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800360int snd_hdac_i915_init(struct hdac_bus *bus)
361{
362 struct component_match *match = NULL;
363 struct device *dev = bus->dev;
364 struct i915_audio_component *acomp;
365 int ret;
366
Takashi Iwaid745f5e2016-03-21 14:41:58 +0100367 if (WARN_ON(hdac_acomp))
368 return -EBUSY;
369
Takashi Iwaibfa5fb12016-03-29 15:03:06 +0200370 if (!i915_gfx_present())
371 return -ENODEV;
372
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800373 acomp = kzalloc(sizeof(*acomp), GFP_KERNEL);
374 if (!acomp)
375 return -ENOMEM;
376 bus->audio_component = acomp;
377 hdac_acomp = acomp;
378
379 component_match_add(dev, &match, hdac_component_master_match, bus);
380 ret = component_master_add_with_match(dev, &hdac_component_master_ops,
381 match);
382 if (ret < 0)
383 goto out_err;
384
385 /*
386 * Atm, we don't support deferring the component binding, so make sure
387 * i915 is loaded and that the binding successfully completes.
388 */
389 request_module("i915");
390
391 if (!acomp->ops) {
392 ret = -ENODEV;
393 goto out_master_del;
394 }
395 dev_dbg(dev, "bound to i915 component master\n");
396
397 return 0;
398out_master_del:
399 component_master_del(dev, &hdac_component_master_ops);
400out_err:
401 kfree(acomp);
402 bus->audio_component = NULL;
Takashi Iwai97cc2ed2016-03-29 18:48:07 +0200403 hdac_acomp = NULL;
Takashi Iwaibed2e982016-01-20 15:00:26 +0100404 dev_info(dev, "failed to add i915 component master (%d)\n", ret);
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800405
406 return ret;
407}
408EXPORT_SYMBOL_GPL(snd_hdac_i915_init);
409
Takashi Iwai78dd5e22015-10-28 12:26:48 +0100410/**
411 * snd_hdac_i915_exit - Finalize i915 audio component
412 * @bus: HDA core bus
413 *
414 * This function is supposed to be used only by a HD-audio controller
415 * driver that needs the interaction with i915 graphics.
416 *
417 * This function releases the i915 audio component that has been used.
418 *
419 * Returns zero for success or a negative error code.
420 */
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800421int snd_hdac_i915_exit(struct hdac_bus *bus)
422{
423 struct device *dev = bus->dev;
424 struct i915_audio_component *acomp = bus->audio_component;
425
Takashi Iwai692af902015-06-10 12:15:27 +0200426 if (!acomp)
427 return 0;
428
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800429 WARN_ON(bus->i915_power_refcount);
Takashi Iwai692af902015-06-10 12:15:27 +0200430 if (bus->i915_power_refcount > 0 && acomp->ops)
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800431 acomp->ops->put_power(acomp->dev);
432
433 component_master_del(dev, &hdac_component_master_ops);
434
435 kfree(acomp);
436 bus->audio_component = NULL;
Takashi Iwaifaafd032016-03-29 12:29:24 +0200437 hdac_acomp = NULL;
Mengdong Lin98d8fc62015-05-19 22:29:30 +0800438
439 return 0;
440}
441EXPORT_SYMBOL_GPL(snd_hdac_i915_exit);