Skip to content

Commit d7055bd

Browse files
ideakdanvet
authored andcommitted
ALSA: hda: add component support
Register a component master to be used to interface with the i915 driver. This is meant to replace the current interface which is based on module symbol lookups. Note that currently we keep the existing behavior and pin the i915 module while the hda driver is loaded. Using the component interface allows us to remove this dependency once support for dynamically enabling / disabling the HDMI functionality is added to the driver. v2: - change roles between the hda and i915 components (Daniel) v3: - rename display_component to audio_component (Daniel) v4: - move removal of i915_powerwell.h from this patch to the next (Takashi) - request_module fails if module support isn't enabled, so ignore any error it returns and depend on the following NULL check of the component ops (Takashi) - change over to using dev_* instead of pr_* (Takashi) Signed-off-by: Imre Deak <[email protected]> Reviewed-by: Takashi Iwai <[email protected]> Signed-off-by: Daniel Vetter <[email protected]>
1 parent 926981a commit d7055bd

File tree

3 files changed

+106
-45
lines changed

3 files changed

+106
-45
lines changed

sound/pci/hda/hda_i915.c

Lines changed: 101 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@
1818

1919
#include <linux/init.h>
2020
#include <linux/module.h>
21+
#include <linux/pci.h>
22+
#include <linux/component.h>
23+
#include <drm/i915_component.h>
2124
#include <sound/core.h>
22-
#include <drm/i915_powerwell.h>
2325
#include "hda_priv.h"
2426
#include "hda_intel.h"
2527

@@ -31,32 +33,33 @@
3133
#define AZX_REG_EM4 0x100c
3234
#define AZX_REG_EM5 0x1010
3335

34-
static int (*get_power)(void);
35-
static int (*put_power)(void);
36-
static int (*get_cdclk)(void);
37-
3836
int hda_display_power(struct hda_intel *hda, bool enable)
3937
{
40-
if (!get_power || !put_power)
38+
struct i915_audio_component *acomp = &hda->audio_component;
39+
40+
if (!acomp->ops)
4141
return -ENODEV;
4242

43-
pr_debug("HDA display power %s \n",
44-
enable ? "Enable" : "Disable");
43+
dev_dbg(&hda->chip.pci->dev, "display power %s\n",
44+
enable ? "enable" : "disable");
4545
if (enable)
46-
return get_power();
46+
acomp->ops->get_power(acomp->dev);
4747
else
48-
return put_power();
48+
acomp->ops->put_power(acomp->dev);
49+
50+
return 0;
4951
}
5052

5153
void haswell_set_bclk(struct hda_intel *hda)
5254
{
5355
int cdclk_freq;
5456
unsigned int bclk_m, bclk_n;
57+
struct i915_audio_component *acomp = &hda->audio_component;
5558

56-
if (!get_cdclk)
59+
if (!acomp->ops)
5760
return;
5861

59-
cdclk_freq = get_cdclk();
62+
cdclk_freq = acomp->ops->get_cdclk_freq(acomp->dev);
6063
switch (cdclk_freq) {
6164
case 337500:
6265
bclk_m = 16;
@@ -84,47 +87,104 @@ void haswell_set_bclk(struct hda_intel *hda)
8487
azx_writew(&hda->chip, EM5, bclk_n);
8588
}
8689

87-
88-
int hda_i915_init(struct hda_intel *hda)
90+
static int hda_component_master_bind(struct device *dev)
8991
{
90-
int err = 0;
92+
struct snd_card *card = dev_get_drvdata(dev);
93+
struct azx *chip = card->private_data;
94+
struct hda_intel *hda = container_of(chip, struct hda_intel, chip);
95+
struct i915_audio_component *acomp = &hda->audio_component;
96+
int ret;
97+
98+
ret = component_bind_all(dev, acomp);
99+
if (ret < 0)
100+
return ret;
101+
102+
if (WARN_ON(!(acomp->dev && acomp->ops && acomp->ops->get_power &&
103+
acomp->ops->put_power && acomp->ops->get_cdclk_freq))) {
104+
ret = -EINVAL;
105+
goto out_unbind;
106+
}
91107

92-
get_power = symbol_request(i915_request_power_well);
93-
if (!get_power) {
94-
pr_warn("hda-i915: get_power symbol get fail\n");
95-
return -ENODEV;
108+
/*
109+
* Atm, we don't support dynamic unbinding initiated by the child
110+
* component, so pin its containing module until we unbind.
111+
*/
112+
if (!try_module_get(acomp->ops->owner)) {
113+
ret = -ENODEV;
114+
goto out_unbind;
96115
}
97116

98-
put_power = symbol_request(i915_release_power_well);
99-
if (!put_power) {
100-
symbol_put(i915_request_power_well);
101-
get_power = NULL;
102-
return -ENODEV;
117+
return 0;
118+
119+
out_unbind:
120+
component_unbind_all(dev, acomp);
121+
122+
return ret;
123+
}
124+
125+
static void hda_component_master_unbind(struct device *dev)
126+
{
127+
struct snd_card *card = dev_get_drvdata(dev);
128+
struct azx *chip = card->private_data;
129+
struct hda_intel *hda = container_of(chip, struct hda_intel, chip);
130+
struct i915_audio_component *acomp = &hda->audio_component;
131+
132+
module_put(acomp->ops->owner);
133+
component_unbind_all(dev, acomp);
134+
WARN_ON(acomp->ops || acomp->dev);
135+
}
136+
137+
static const struct component_master_ops hda_component_master_ops = {
138+
.bind = hda_component_master_bind,
139+
.unbind = hda_component_master_unbind,
140+
};
141+
142+
static int hda_component_master_match(struct device *dev, void *data)
143+
{
144+
/* i915 is the only supported component */
145+
return !strcmp(dev->driver->name, "i915");
146+
}
147+
148+
int hda_i915_init(struct hda_intel *hda)
149+
{
150+
struct component_match *match = NULL;
151+
struct device *dev = &hda->chip.pci->dev;
152+
struct i915_audio_component *acomp = &hda->audio_component;
153+
int ret;
154+
155+
component_match_add(dev, &match, hda_component_master_match, hda);
156+
ret = component_master_add_with_match(dev, &hda_component_master_ops,
157+
match);
158+
if (ret < 0)
159+
goto out_err;
160+
161+
/*
162+
* Atm, we don't support deferring the component binding, so make sure
163+
* i915 is loaded and that the binding successfully completes.
164+
*/
165+
request_module("i915");
166+
167+
if (!acomp->ops) {
168+
ret = -ENODEV;
169+
goto out_master_del;
103170
}
104171

105-
get_cdclk = symbol_request(i915_get_cdclk_freq);
106-
if (!get_cdclk) /* may have abnormal BCLK and audio playback rate */
107-
pr_warn("hda-i915: get_cdclk symbol get fail\n");
172+
dev_dbg(dev, "bound to i915 component master\n");
108173

109-
pr_debug("HDA driver get symbol successfully from i915 module\n");
174+
return 0;
175+
out_master_del:
176+
component_master_del(dev, &hda_component_master_ops);
177+
out_err:
178+
dev_err(dev, "failed to add i915 component master (%d)\n", ret);
110179

111-
return err;
180+
return ret;
112181
}
113182

114183
int hda_i915_exit(struct hda_intel *hda)
115184
{
116-
if (get_power) {
117-
symbol_put(i915_request_power_well);
118-
get_power = NULL;
119-
}
120-
if (put_power) {
121-
symbol_put(i915_release_power_well);
122-
put_power = NULL;
123-
}
124-
if (get_cdclk) {
125-
symbol_put(i915_get_cdclk_freq);
126-
get_cdclk = NULL;
127-
}
185+
struct device *dev = &hda->chip.pci->dev;
186+
187+
component_master_del(dev, &hda_component_master_ops);
128188

129189
return 0;
130190
}

sound/pci/hda/hda_intel.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1890,11 +1890,8 @@ static int azx_probe_continue(struct azx *chip)
18901890
if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) {
18911891
#ifdef CONFIG_SND_HDA_I915
18921892
err = hda_i915_init(hda);
1893-
if (err < 0) {
1894-
dev_err(chip->card->dev,
1895-
"Error request power-well from i915\n");
1893+
if (err < 0)
18961894
goto out_free;
1897-
}
18981895
err = hda_display_power(hda, true);
18991896
if (err < 0) {
19001897
dev_err(chip->card->dev,

sound/pci/hda/hda_intel.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#ifndef __SOUND_HDA_INTEL_H
1717
#define __SOUND_HDA_INTEL_H
1818

19+
#include <drm/i915_component.h>
1920
#include "hda_priv.h"
2021

2122
struct hda_intel {
@@ -41,6 +42,9 @@ struct hda_intel {
4142

4243
/* secondary power domain for hdmi audio under vga device */
4344
struct dev_pm_domain hdmi_pm_domain;
45+
46+
/* i915 component interface */
47+
struct i915_audio_component audio_component;
4448
};
4549

4650
#ifdef CONFIG_SND_HDA_I915

0 commit comments

Comments
 (0)