2 * hda_i915.c - routines for Haswell HDA controller power well support
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)
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
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #include <linux/init.h>
20 #include <linux/module.h>
21 #include <linux/pci.h>
22 #include <linux/component.h>
23 #include <drm/i915_component.h>
24 #include <sound/core.h>
25 #include "hda_controller.h"
26 #include "hda_intel.h"
28 /* Intel HSW/BDW display HDA controller Extended Mode registers.
29 * EM4 (M value) and EM5 (N Value) are used to convert CDClk (Core Display
30 * Clock) to 24MHz BCLK: BCLK = CDCLK * M / N
31 * The values will be lost when the display power well is disabled.
33 #define AZX_REG_EM4 0x100c
34 #define AZX_REG_EM5 0x1010
36 int hda_display_power(struct hda_intel
*hda
, bool enable
)
38 struct i915_audio_component
*acomp
= &hda
->audio_component
;
43 dev_dbg(&hda
->chip
.pci
->dev
, "display power %s\n",
44 enable
? "enable" : "disable");
46 acomp
->ops
->get_power(acomp
->dev
);
48 acomp
->ops
->put_power(acomp
->dev
);
53 void haswell_set_bclk(struct hda_intel
*hda
)
56 unsigned int bclk_m
, bclk_n
;
57 struct i915_audio_component
*acomp
= &hda
->audio_component
;
58 struct pci_dev
*pci
= hda
->chip
.pci
;
60 /* Only Haswell/Broadwell need set BCLK */
61 if (pci
->device
!= 0x0a0c && pci
->device
!= 0x0c0c
62 && pci
->device
!= 0x0d0c && pci
->device
!= 0x160c)
68 cdclk_freq
= acomp
->ops
->get_cdclk_freq(acomp
->dev
);
76 default: /* default CDCLK 450MHz */
92 azx_writew(&hda
->chip
, EM4
, bclk_m
);
93 azx_writew(&hda
->chip
, EM5
, bclk_n
);
96 static int hda_component_master_bind(struct device
*dev
)
98 struct snd_card
*card
= dev_get_drvdata(dev
);
99 struct azx
*chip
= card
->private_data
;
100 struct hda_intel
*hda
= container_of(chip
, struct hda_intel
, chip
);
101 struct i915_audio_component
*acomp
= &hda
->audio_component
;
104 ret
= component_bind_all(dev
, acomp
);
108 if (WARN_ON(!(acomp
->dev
&& acomp
->ops
&& acomp
->ops
->get_power
&&
109 acomp
->ops
->put_power
&& acomp
->ops
->get_cdclk_freq
))) {
115 * Atm, we don't support dynamic unbinding initiated by the child
116 * component, so pin its containing module until we unbind.
118 if (!try_module_get(acomp
->ops
->owner
)) {
126 component_unbind_all(dev
, acomp
);
131 static void hda_component_master_unbind(struct device
*dev
)
133 struct snd_card
*card
= dev_get_drvdata(dev
);
134 struct azx
*chip
= card
->private_data
;
135 struct hda_intel
*hda
= container_of(chip
, struct hda_intel
, chip
);
136 struct i915_audio_component
*acomp
= &hda
->audio_component
;
138 module_put(acomp
->ops
->owner
);
139 component_unbind_all(dev
, acomp
);
140 WARN_ON(acomp
->ops
|| acomp
->dev
);
143 static const struct component_master_ops hda_component_master_ops
= {
144 .bind
= hda_component_master_bind
,
145 .unbind
= hda_component_master_unbind
,
148 static int hda_component_master_match(struct device
*dev
, void *data
)
150 /* i915 is the only supported component */
151 return !strcmp(dev
->driver
->name
, "i915");
154 int hda_i915_init(struct hda_intel
*hda
)
156 struct component_match
*match
= NULL
;
157 struct device
*dev
= &hda
->chip
.pci
->dev
;
158 struct i915_audio_component
*acomp
= &hda
->audio_component
;
161 component_match_add(dev
, &match
, hda_component_master_match
, hda
);
162 ret
= component_master_add_with_match(dev
, &hda_component_master_ops
,
168 * Atm, we don't support deferring the component binding, so make sure
169 * i915 is loaded and that the binding successfully completes.
171 request_module("i915");
178 dev_dbg(dev
, "bound to i915 component master\n");
182 component_master_del(dev
, &hda_component_master_ops
);
184 dev_err(dev
, "failed to add i915 component master (%d)\n", ret
);
189 int hda_i915_exit(struct hda_intel
*hda
)
191 struct device
*dev
= &hda
->chip
.pci
->dev
;
193 component_master_del(dev
, &hda_component_master_ops
);