ALSA: hda - Remove superfluous MAX_AZX_DEV
[firefly-linux-kernel-4.4.55.git] / sound / pci / hda / hda_priv.h
1 /*
2  *  Common defines for the alsa driver code base for HD Audio.
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 WITHOUT
10  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  *  more details.
13  */
14
15 #ifndef __SOUND_HDA_PRIV_H
16 #define __SOUND_HDA_PRIV_H
17
18 #include <linux/clocksource.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21
22 /*
23  * registers
24  */
25 #define ICH6_REG_GCAP                   0x00
26 #define   ICH6_GCAP_64OK        (1 << 0)   /* 64bit address support */
27 #define   ICH6_GCAP_NSDO        (3 << 1)   /* # of serial data out signals */
28 #define   ICH6_GCAP_BSS         (31 << 3)  /* # of bidirectional streams */
29 #define   ICH6_GCAP_ISS         (15 << 8)  /* # of input streams */
30 #define   ICH6_GCAP_OSS         (15 << 12) /* # of output streams */
31 #define ICH6_REG_VMIN                   0x02
32 #define ICH6_REG_VMAJ                   0x03
33 #define ICH6_REG_OUTPAY                 0x04
34 #define ICH6_REG_INPAY                  0x06
35 #define ICH6_REG_GCTL                   0x08
36 #define   ICH6_GCTL_RESET       (1 << 0)   /* controller reset */
37 #define   ICH6_GCTL_FCNTRL      (1 << 1)   /* flush control */
38 #define   ICH6_GCTL_UNSOL       (1 << 8)   /* accept unsol. response enable */
39 #define ICH6_REG_WAKEEN                 0x0c
40 #define ICH6_REG_STATESTS               0x0e
41 #define ICH6_REG_GSTS                   0x10
42 #define   ICH6_GSTS_FSTS        (1 << 1)   /* flush status */
43 #define ICH6_REG_INTCTL                 0x20
44 #define ICH6_REG_INTSTS                 0x24
45 #define ICH6_REG_WALLCLK                0x30    /* 24Mhz source */
46 #define ICH6_REG_OLD_SSYNC              0x34    /* SSYNC for old ICH */
47 #define ICH6_REG_SSYNC                  0x38
48 #define ICH6_REG_CORBLBASE              0x40
49 #define ICH6_REG_CORBUBASE              0x44
50 #define ICH6_REG_CORBWP                 0x48
51 #define ICH6_REG_CORBRP                 0x4a
52 #define   ICH6_CORBRP_RST       (1 << 15)  /* read pointer reset */
53 #define ICH6_REG_CORBCTL                0x4c
54 #define   ICH6_CORBCTL_RUN      (1 << 1)   /* enable DMA */
55 #define   ICH6_CORBCTL_CMEIE    (1 << 0)   /* enable memory error irq */
56 #define ICH6_REG_CORBSTS                0x4d
57 #define   ICH6_CORBSTS_CMEI     (1 << 0)   /* memory error indication */
58 #define ICH6_REG_CORBSIZE               0x4e
59
60 #define ICH6_REG_RIRBLBASE              0x50
61 #define ICH6_REG_RIRBUBASE              0x54
62 #define ICH6_REG_RIRBWP                 0x58
63 #define   ICH6_RIRBWP_RST       (1 << 15)  /* write pointer reset */
64 #define ICH6_REG_RINTCNT                0x5a
65 #define ICH6_REG_RIRBCTL                0x5c
66 #define   ICH6_RBCTL_IRQ_EN     (1 << 0)   /* enable IRQ */
67 #define   ICH6_RBCTL_DMA_EN     (1 << 1)   /* enable DMA */
68 #define   ICH6_RBCTL_OVERRUN_EN (1 << 2)   /* enable overrun irq */
69 #define ICH6_REG_RIRBSTS                0x5d
70 #define   ICH6_RBSTS_IRQ        (1 << 0)   /* response irq */
71 #define   ICH6_RBSTS_OVERRUN    (1 << 2)   /* overrun irq */
72 #define ICH6_REG_RIRBSIZE               0x5e
73
74 #define ICH6_REG_IC                     0x60
75 #define ICH6_REG_IR                     0x64
76 #define ICH6_REG_IRS                    0x68
77 #define   ICH6_IRS_VALID        (1<<1)
78 #define   ICH6_IRS_BUSY         (1<<0)
79
80 #define ICH6_REG_DPLBASE                0x70
81 #define ICH6_REG_DPUBASE                0x74
82 #define   ICH6_DPLBASE_ENABLE   0x1     /* Enable position buffer */
83
84 /* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
85 enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
86
87 /* stream register offsets from stream base */
88 #define ICH6_REG_SD_CTL                 0x00
89 #define ICH6_REG_SD_STS                 0x03
90 #define ICH6_REG_SD_LPIB                0x04
91 #define ICH6_REG_SD_CBL                 0x08
92 #define ICH6_REG_SD_LVI                 0x0c
93 #define ICH6_REG_SD_FIFOW               0x0e
94 #define ICH6_REG_SD_FIFOSIZE            0x10
95 #define ICH6_REG_SD_FORMAT              0x12
96 #define ICH6_REG_SD_BDLPL               0x18
97 #define ICH6_REG_SD_BDLPU               0x1c
98
99 /* PCI space */
100 #define ICH6_PCIREG_TCSEL       0x44
101
102 /*
103  * other constants
104  */
105
106 /* max number of SDs */
107 /* ICH, ATI and VIA have 4 playback and 4 capture */
108 #define ICH6_NUM_CAPTURE        4
109 #define ICH6_NUM_PLAYBACK       4
110
111 /* ULI has 6 playback and 5 capture */
112 #define ULI_NUM_CAPTURE         5
113 #define ULI_NUM_PLAYBACK        6
114
115 /* ATI HDMI may have up to 8 playbacks and 0 capture */
116 #define ATIHDMI_NUM_CAPTURE     0
117 #define ATIHDMI_NUM_PLAYBACK    8
118
119 /* TERA has 4 playback and 3 capture */
120 #define TERA_NUM_CAPTURE        3
121 #define TERA_NUM_PLAYBACK       4
122
123 /* max number of fragments - we may use more if allocating more pages for BDL */
124 #define BDL_SIZE                4096
125 #define AZX_MAX_BDL_ENTRIES     (BDL_SIZE / 16)
126 #define AZX_MAX_FRAG            32
127 /* max buffer size - no h/w limit, you can increase as you like */
128 #define AZX_MAX_BUF_SIZE        (1024*1024*1024)
129
130 /* RIRB int mask: overrun[2], response[0] */
131 #define RIRB_INT_RESPONSE       0x01
132 #define RIRB_INT_OVERRUN        0x04
133 #define RIRB_INT_MASK           0x05
134
135 /* STATESTS int mask: S3,SD2,SD1,SD0 */
136 #define AZX_MAX_CODECS          8
137 #define AZX_DEFAULT_CODECS      4
138 #define STATESTS_INT_MASK       ((1 << AZX_MAX_CODECS) - 1)
139
140 /* SD_CTL bits */
141 #define SD_CTL_STREAM_RESET     0x01    /* stream reset bit */
142 #define SD_CTL_DMA_START        0x02    /* stream DMA start bit */
143 #define SD_CTL_STRIPE           (3 << 16)       /* stripe control */
144 #define SD_CTL_TRAFFIC_PRIO     (1 << 18)       /* traffic priority */
145 #define SD_CTL_DIR              (1 << 19)       /* bi-directional stream */
146 #define SD_CTL_STREAM_TAG_MASK  (0xf << 20)
147 #define SD_CTL_STREAM_TAG_SHIFT 20
148
149 /* SD_CTL and SD_STS */
150 #define SD_INT_DESC_ERR         0x10    /* descriptor error interrupt */
151 #define SD_INT_FIFO_ERR         0x08    /* FIFO error interrupt */
152 #define SD_INT_COMPLETE         0x04    /* completion interrupt */
153 #define SD_INT_MASK             (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
154                                  SD_INT_COMPLETE)
155
156 /* SD_STS */
157 #define SD_STS_FIFO_READY       0x20    /* FIFO ready */
158
159 /* INTCTL and INTSTS */
160 #define ICH6_INT_ALL_STREAM     0xff       /* all stream interrupts */
161 #define ICH6_INT_CTRL_EN        0x40000000 /* controller interrupt enable bit */
162 #define ICH6_INT_GLOBAL_EN      0x80000000 /* global interrupt enable bit */
163
164 /* below are so far hardcoded - should read registers in future */
165 #define ICH6_MAX_CORB_ENTRIES   256
166 #define ICH6_MAX_RIRB_ENTRIES   256
167
168 /* driver quirks (capabilities) */
169 /* bits 0-7 are used for indicating driver type */
170 #define AZX_DCAPS_NO_TCSEL      (1 << 8)        /* No Intel TCSEL bit */
171 #define AZX_DCAPS_NO_MSI        (1 << 9)        /* No MSI support */
172 #define AZX_DCAPS_ATI_SNOOP     (1 << 10)       /* ATI snoop enable */
173 #define AZX_DCAPS_NVIDIA_SNOOP  (1 << 11)       /* Nvidia snoop enable */
174 #define AZX_DCAPS_SCH_SNOOP     (1 << 12)       /* SCH/PCH snoop enable */
175 #define AZX_DCAPS_RIRB_DELAY    (1 << 13)       /* Long delay in read loop */
176 #define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14)      /* Put a delay before read */
177 #define AZX_DCAPS_CTX_WORKAROUND (1 << 15)      /* X-Fi workaround */
178 #define AZX_DCAPS_POSFIX_LPIB   (1 << 16)       /* Use LPIB as default */
179 #define AZX_DCAPS_POSFIX_VIA    (1 << 17)       /* Use VIACOMBO as default */
180 #define AZX_DCAPS_NO_64BIT      (1 << 18)       /* No 64bit address */
181 #define AZX_DCAPS_SYNC_WRITE    (1 << 19)       /* sync each cmd write */
182 #define AZX_DCAPS_OLD_SSYNC     (1 << 20)       /* Old SSYNC reg for ICH */
183 #define AZX_DCAPS_BUFSIZE       (1 << 21)       /* no buffer size alignment */
184 #define AZX_DCAPS_ALIGN_BUFSIZE (1 << 22)       /* buffer size alignment */
185 #define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23)    /* BDLE in 4k boundary */
186 #define AZX_DCAPS_COUNT_LPIB_DELAY  (1 << 25)   /* Take LPIB as delay */
187 #define AZX_DCAPS_PM_RUNTIME    (1 << 26)       /* runtime PM support */
188 #define AZX_DCAPS_I915_POWERWELL (1 << 27)      /* HSW i915 powerwell support */
189 #define AZX_DCAPS_CORBRP_SELF_CLEAR (1 << 28)   /* CORBRP clears itself after reset */
190
191 /* position fix mode */
192 enum {
193         POS_FIX_AUTO,
194         POS_FIX_LPIB,
195         POS_FIX_POSBUF,
196         POS_FIX_VIACOMBO,
197         POS_FIX_COMBO,
198 };
199
200 /* Defines for ATI HD Audio support in SB450 south bridge */
201 #define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR   0x42
202 #define ATI_SB450_HDAUDIO_ENABLE_SNOOP      0x02
203
204 /* Defines for Nvidia HDA support */
205 #define NVIDIA_HDA_TRANSREG_ADDR      0x4e
206 #define NVIDIA_HDA_ENABLE_COHBITS     0x0f
207 #define NVIDIA_HDA_ISTRM_COH          0x4d
208 #define NVIDIA_HDA_OSTRM_COH          0x4c
209 #define NVIDIA_HDA_ENABLE_COHBIT      0x01
210
211 /* Defines for Intel SCH HDA snoop control */
212 #define INTEL_SCH_HDA_DEVC      0x78
213 #define INTEL_SCH_HDA_DEVC_NOSNOOP       (0x1<<11)
214
215 /* Define IN stream 0 FIFO size offset in VIA controller */
216 #define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
217 /* Define VIA HD Audio Device ID*/
218 #define VIA_HDAC_DEVICE_ID              0x3288
219
220 /* HD Audio class code */
221 #define PCI_CLASS_MULTIMEDIA_HD_AUDIO   0x0403
222
223 struct azx_dev {
224         struct snd_dma_buffer bdl; /* BDL buffer */
225         u32 *posbuf;            /* position buffer pointer */
226
227         unsigned int bufsize;   /* size of the play buffer in bytes */
228         unsigned int period_bytes; /* size of the period in bytes */
229         unsigned int frags;     /* number for period in the play buffer */
230         unsigned int fifo_size; /* FIFO size */
231         unsigned long start_wallclk;    /* start + minimum wallclk */
232         unsigned long period_wallclk;   /* wallclk for period */
233
234         void __iomem *sd_addr;  /* stream descriptor pointer */
235
236         u32 sd_int_sta_mask;    /* stream int status mask */
237
238         /* pcm support */
239         struct snd_pcm_substream *substream;    /* assigned substream,
240                                                  * set in PCM open
241                                                  */
242         unsigned int format_val;        /* format value to be set in the
243                                          * controller and the codec
244                                          */
245         unsigned char stream_tag;       /* assigned stream */
246         unsigned char index;            /* stream index */
247         int assigned_key;               /* last device# key assigned to */
248
249         unsigned int opened:1;
250         unsigned int running:1;
251         unsigned int irq_pending:1;
252         unsigned int prepared:1;
253         unsigned int locked:1;
254         /*
255          * For VIA:
256          *  A flag to ensure DMA position is 0
257          *  when link position is not greater than FIFO size
258          */
259         unsigned int insufficient:1;
260         unsigned int wc_marked:1;
261         unsigned int no_period_wakeup:1;
262
263         struct timecounter  azx_tc;
264         struct cyclecounter azx_cc;
265
266         int delay_negative_threshold;
267
268 #ifdef CONFIG_SND_HDA_DSP_LOADER
269         /* Allows dsp load to have sole access to the playback stream. */
270         struct mutex dsp_mutex;
271 #endif
272 };
273
274 /* CORB/RIRB */
275 struct azx_rb {
276         u32 *buf;               /* CORB/RIRB buffer
277                                  * Each CORB entry is 4byte, RIRB is 8byte
278                                  */
279         dma_addr_t addr;        /* physical address of CORB/RIRB buffer */
280         /* for RIRB */
281         unsigned short rp, wp;  /* read/write pointers */
282         int cmds[AZX_MAX_CODECS];       /* number of pending requests */
283         u32 res[AZX_MAX_CODECS];        /* last read value */
284 };
285
286 struct azx;
287
288 /* Functions to read/write to hda registers. */
289 struct hda_controller_ops {
290         /* Register Access */
291         void (*reg_writel)(u32 value, u32 __iomem *addr);
292         u32 (*reg_readl)(u32 __iomem *addr);
293         void (*reg_writew)(u16 value, u16 __iomem *addr);
294         u16 (*reg_readw)(u16 __iomem *addr);
295         void (*reg_writeb)(u8 value, u8 __iomem *addr);
296         u8 (*reg_readb)(u8 __iomem *addr);
297         /* Disable msi if supported, PCI only */
298         int (*disable_msi_reset_irq)(struct azx *);
299         /* Allocation ops */
300         int (*dma_alloc_pages)(struct azx *chip,
301                                int type,
302                                size_t size,
303                                struct snd_dma_buffer *buf);
304         void (*dma_free_pages)(struct azx *chip, struct snd_dma_buffer *buf);
305         int (*substream_alloc_pages)(struct azx *chip,
306                                      struct snd_pcm_substream *substream,
307                                      size_t size);
308         int (*substream_free_pages)(struct azx *chip,
309                                     struct snd_pcm_substream *substream);
310         void (*pcm_mmap_prepare)(struct snd_pcm_substream *substream,
311                                  struct vm_area_struct *area);
312         /* Check if current position is acceptable */
313         int (*position_check)(struct azx *chip, struct azx_dev *azx_dev);
314 };
315
316 struct azx_pcm {
317         struct azx *chip;
318         struct snd_pcm *pcm;
319         struct hda_codec *codec;
320         struct hda_pcm_stream *hinfo[2];
321         struct list_head list;
322 };
323
324 struct azx {
325         struct snd_card *card;
326         struct pci_dev *pci;
327         int dev_index;
328
329         /* chip type specific */
330         int driver_type;
331         unsigned int driver_caps;
332         int playback_streams;
333         int playback_index_offset;
334         int capture_streams;
335         int capture_index_offset;
336         int num_streams;
337         const int *jackpoll_ms; /* per-card jack poll interval */
338
339         /* Register interaction. */
340         const struct hda_controller_ops *ops;
341
342         /* pci resources */
343         unsigned long addr;
344         void __iomem *remap_addr;
345         int irq;
346
347         /* locks */
348         spinlock_t reg_lock;
349         struct mutex open_mutex; /* Prevents concurrent open/close operations */
350         struct completion probe_wait;
351
352         /* streams (x num_streams) */
353         struct azx_dev *azx_dev;
354
355         /* PCM */
356         struct list_head pcm_list; /* azx_pcm list */
357
358         /* HD codec */
359         unsigned short codec_mask;
360         int  codec_probe_mask; /* copied from probe_mask option */
361         struct hda_bus *bus;
362         unsigned int beep_mode;
363
364         /* CORB/RIRB */
365         struct azx_rb corb;
366         struct azx_rb rirb;
367
368         /* CORB/RIRB and position buffers */
369         struct snd_dma_buffer rb;
370         struct snd_dma_buffer posbuf;
371
372 #ifdef CONFIG_SND_HDA_PATCH_LOADER
373         const struct firmware *fw;
374 #endif
375
376         /* flags */
377         int position_fix[2]; /* for both playback/capture streams */
378         const int *bdl_pos_adj;
379         int poll_count;
380         unsigned int running:1;
381         unsigned int initialized:1;
382         unsigned int single_cmd:1;
383         unsigned int polling_mode:1;
384         unsigned int msi:1;
385         unsigned int irq_pending_warned:1;
386         unsigned int probing:1; /* codec probing phase */
387         unsigned int snoop:1;
388         unsigned int align_buffer_size:1;
389         unsigned int region_requested:1;
390
391         /* VGA-switcheroo setup */
392         unsigned int use_vga_switcheroo:1;
393         unsigned int vga_switcheroo_registered:1;
394         unsigned int init_failed:1; /* delayed init failed */
395         unsigned int disabled:1; /* disabled by VGA-switcher */
396
397         /* for debugging */
398         unsigned int last_cmd[AZX_MAX_CODECS];
399
400         /* for pending irqs */
401         struct work_struct irq_pending_work;
402
403         struct work_struct probe_work;
404
405         /* reboot notifier (for mysterious hangup problem at power-down) */
406         struct notifier_block reboot_notifier;
407
408         /* card list (for power_save trigger) */
409         struct list_head list;
410
411 #ifdef CONFIG_SND_HDA_DSP_LOADER
412         struct azx_dev saved_azx_dev;
413 #endif
414
415         /* secondary power domain for hdmi audio under vga device */
416         struct dev_pm_domain hdmi_pm_domain;
417 };
418
419 #ifdef CONFIG_SND_VERBOSE_PRINTK
420 #define SFX     /* nop */
421 #else
422 #define SFX     "hda-intel "
423 #endif
424
425 #ifdef CONFIG_X86
426 #define azx_snoop(chip)         ((chip)->snoop)
427 #else
428 #define azx_snoop(chip)         true
429 #endif
430
431 /*
432  * macros for easy use
433  */
434
435 #define azx_writel(chip, reg, value) \
436         ((chip)->ops->reg_writel(value, (chip)->remap_addr + ICH6_REG_##reg))
437 #define azx_readl(chip, reg) \
438         ((chip)->ops->reg_readl((chip)->remap_addr + ICH6_REG_##reg))
439 #define azx_writew(chip, reg, value) \
440         ((chip)->ops->reg_writew(value, (chip)->remap_addr + ICH6_REG_##reg))
441 #define azx_readw(chip, reg) \
442         ((chip)->ops->reg_readw((chip)->remap_addr + ICH6_REG_##reg))
443 #define azx_writeb(chip, reg, value) \
444         ((chip)->ops->reg_writeb(value, (chip)->remap_addr + ICH6_REG_##reg))
445 #define azx_readb(chip, reg) \
446         ((chip)->ops->reg_readb((chip)->remap_addr + ICH6_REG_##reg))
447
448 #define azx_sd_writel(chip, dev, reg, value) \
449         ((chip)->ops->reg_writel(value, (dev)->sd_addr + ICH6_REG_##reg))
450 #define azx_sd_readl(chip, dev, reg) \
451         ((chip)->ops->reg_readl((dev)->sd_addr + ICH6_REG_##reg))
452 #define azx_sd_writew(chip, dev, reg, value) \
453         ((chip)->ops->reg_writew(value, (dev)->sd_addr + ICH6_REG_##reg))
454 #define azx_sd_readw(chip, dev, reg) \
455         ((chip)->ops->reg_readw((dev)->sd_addr + ICH6_REG_##reg))
456 #define azx_sd_writeb(chip, dev, reg, value) \
457         ((chip)->ops->reg_writeb(value, (dev)->sd_addr + ICH6_REG_##reg))
458 #define azx_sd_readb(chip, dev, reg) \
459         ((chip)->ops->reg_readb((dev)->sd_addr + ICH6_REG_##reg))
460
461 #endif /* __SOUND_HDA_PRIV_H */