1
2
3
4
5
6#ifndef __SOUND_HDA_CONTROLLER_H
7#define __SOUND_HDA_CONTROLLER_H
8
9#include <linux/timecounter.h>
10#include <linux/interrupt.h>
11#include <sound/core.h>
12#include <sound/pcm.h>
13#include <sound/initval.h>
14#include <sound/hda_codec.h>
15#include <sound/hda_register.h>
16
17#define AZX_MAX_CODECS HDA_MAX_CODECS
18#define AZX_DEFAULT_CODECS 4
19
20
21
22#define AZX_DCAPS_NO_TCSEL (1 << 8)
23#define AZX_DCAPS_NO_MSI (1 << 9)
24#define AZX_DCAPS_SNOOP_MASK (3 << 10)
25#define AZX_DCAPS_SNOOP_OFF (1 << 12)
26#ifdef CONFIG_SND_HDA_I915
27#define AZX_DCAPS_I915_COMPONENT (1 << 13)
28#else
29#define AZX_DCAPS_I915_COMPONENT 0
30#endif
31
32#define AZX_DCAPS_CTX_WORKAROUND (1 << 15)
33#define AZX_DCAPS_POSFIX_LPIB (1 << 16)
34#define AZX_DCAPS_AMD_WORKAROUND (1 << 17)
35#define AZX_DCAPS_NO_64BIT (1 << 18)
36
37#define AZX_DCAPS_OLD_SSYNC (1 << 20)
38#define AZX_DCAPS_NO_ALIGN_BUFSIZE (1 << 21)
39
40#define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23)
41
42#define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25)
43#define AZX_DCAPS_PM_RUNTIME (1 << 26)
44
45#define AZX_DCAPS_CORBRP_SELF_CLEAR (1 << 28)
46#define AZX_DCAPS_NO_MSI64 (1 << 29)
47#define AZX_DCAPS_SEPARATE_STREAM_TAG (1 << 30)
48
49enum {
50 AZX_SNOOP_TYPE_NONE,
51 AZX_SNOOP_TYPE_SCH,
52 AZX_SNOOP_TYPE_ATI,
53 AZX_SNOOP_TYPE_NVIDIA,
54};
55
56struct azx_dev {
57 struct hdac_stream core;
58
59 unsigned int irq_pending:1;
60
61
62
63
64
65 unsigned int insufficient:1;
66};
67
68#define azx_stream(dev) (&(dev)->core)
69#define stream_to_azx_dev(s) container_of(s, struct azx_dev, core)
70
71struct azx;
72
73
74struct hda_controller_ops {
75
76 int (*disable_msi_reset_irq)(struct azx *);
77 void (*pcm_mmap_prepare)(struct snd_pcm_substream *substream,
78 struct vm_area_struct *area);
79
80 int (*position_check)(struct azx *chip, struct azx_dev *azx_dev);
81
82 int (*link_power)(struct azx *chip, bool enable);
83};
84
85struct azx_pcm {
86 struct azx *chip;
87 struct snd_pcm *pcm;
88 struct hda_codec *codec;
89 struct hda_pcm *info;
90 struct list_head list;
91};
92
93typedef unsigned int (*azx_get_pos_callback_t)(struct azx *, struct azx_dev *);
94typedef int (*azx_get_delay_callback_t)(struct azx *, struct azx_dev *, unsigned int pos);
95
96struct azx {
97 struct hda_bus bus;
98
99 struct snd_card *card;
100 struct pci_dev *pci;
101 int dev_index;
102
103
104 int driver_type;
105 unsigned int driver_caps;
106 int playback_streams;
107 int playback_index_offset;
108 int capture_streams;
109 int capture_index_offset;
110 int num_streams;
111 int jackpoll_interval;
112
113
114 const struct hda_controller_ops *ops;
115
116
117 azx_get_pos_callback_t get_position[2];
118 azx_get_delay_callback_t get_delay[2];
119
120
121 struct mutex open_mutex;
122
123
124 struct list_head pcm_list;
125
126
127 int codec_probe_mask;
128 unsigned int beep_mode;
129
130#ifdef CONFIG_SND_HDA_PATCH_LOADER
131 const struct firmware *fw;
132#endif
133
134
135 int bdl_pos_adj;
136 unsigned int running:1;
137 unsigned int fallback_to_single_cmd:1;
138 unsigned int single_cmd:1;
139 unsigned int msi:1;
140 unsigned int probing:1;
141 unsigned int snoop:1;
142 unsigned int uc_buffer:1;
143 unsigned int align_buffer_size:1;
144 unsigned int region_requested:1;
145 unsigned int disabled:1;
146 unsigned int pm_prepared:1;
147
148
149 unsigned int gts_present:1;
150
151#ifdef CONFIG_SND_HDA_DSP_LOADER
152 struct azx_dev saved_azx_dev;
153#endif
154};
155
156#define azx_bus(chip) (&(chip)->bus.core)
157#define bus_to_azx(_bus) container_of(_bus, struct azx, bus.core)
158
159static inline bool azx_snoop(struct azx *chip)
160{
161 return !IS_ENABLED(CONFIG_X86) || chip->snoop;
162}
163
164
165
166
167
168#define azx_writel(chip, reg, value) \
169 snd_hdac_chip_writel(azx_bus(chip), reg, value)
170#define azx_readl(chip, reg) \
171 snd_hdac_chip_readl(azx_bus(chip), reg)
172#define azx_writew(chip, reg, value) \
173 snd_hdac_chip_writew(azx_bus(chip), reg, value)
174#define azx_readw(chip, reg) \
175 snd_hdac_chip_readw(azx_bus(chip), reg)
176#define azx_writeb(chip, reg, value) \
177 snd_hdac_chip_writeb(azx_bus(chip), reg, value)
178#define azx_readb(chip, reg) \
179 snd_hdac_chip_readb(azx_bus(chip), reg)
180
181#define azx_has_pm_runtime(chip) \
182 ((chip)->driver_caps & AZX_DCAPS_PM_RUNTIME)
183
184
185static inline struct azx_dev *get_azx_dev(struct snd_pcm_substream *substream)
186{
187 return substream->runtime->private_data;
188}
189unsigned int azx_get_position(struct azx *chip, struct azx_dev *azx_dev);
190unsigned int azx_get_pos_lpib(struct azx *chip, struct azx_dev *azx_dev);
191unsigned int azx_get_pos_posbuf(struct azx *chip, struct azx_dev *azx_dev);
192
193
194void azx_stop_all_streams(struct azx *chip);
195
196
197#define azx_alloc_stream_pages(chip) \
198 snd_hdac_bus_alloc_stream_pages(azx_bus(chip))
199#define azx_free_stream_pages(chip) \
200 snd_hdac_bus_free_stream_pages(azx_bus(chip))
201
202
203void azx_init_chip(struct azx *chip, bool full_reset);
204void azx_stop_chip(struct azx *chip);
205#define azx_enter_link_reset(chip) \
206 snd_hdac_bus_enter_link_reset(azx_bus(chip))
207irqreturn_t azx_interrupt(int irq, void *dev_id);
208
209
210int azx_bus_init(struct azx *chip, const char *model);
211int azx_probe_codecs(struct azx *chip, unsigned int max_slots);
212int azx_codec_configure(struct azx *chip);
213int azx_init_streams(struct azx *chip);
214void azx_free_streams(struct azx *chip);
215
216#endif
217